What is the result the following Java code using printf for character output?
char letter = 'A';
System.out.printf("The letter after A is %c", ++letter);
What is the result the following Java code using printf for character output?
char letter = 'A';
System.out.printf("The letter after A is %c", ++letter);