class Codechef {
public static void main(String args[]) {
int a=10,b=20;
System.out.println(a>b?'A':65); } }
This code in JAVA prints 'A' and not 65. Why?
class Codechef {
public static void main(String args[]) {
int a=10,b=20;
System.out.println(a>b?'A':65); } }
This code in JAVA prints 'A' and not 65. Why?