class output { public static void main(String args[]) { char var11 = 'A'; char var12 = 'a'; System.out.println((int)var11 + " " + (int)var12); } }
ASCII code for ‘A’ is 65 and for ‘a’ is 97.output: 65 97
Previous Question Next Question
Your comments will be displayed only after manual approval.