Advertisements
Advertisements
Question
Find the output of the following program snippet:
char ch= 'y';
char chr = Character.toUpperCase(ch);
int p = (int) chr;
System.out.println(chr+ "\t" + p);
One Line Answer
Solution
Y 89
shaalaa.com
Is there an error in this question or solution?