// Page 012 class Prog_2_3a { public static void main(String[] args) { char letter; // declare a char variable letter = 'A'; // assign the value 'A' System.out.println(letter + " "); // output the value } }