0
Why 65
Here's a code // Compiler version JDK 11.0.2 class Dcoder { public static void main(String args[]) { char[] sym = new char[1]; sym[0] = '5'; System.out.println(12+sym[0]); } }
2 Answers
+ 5
Character '5' ascii value is 53.
So it's 12+53
+ 1
Thx