What will be the output of the following Java code?
class asciicodes
{
public static void main(String args[ ])
char var1 = 'A';
char var2 = 'a';
System. out. println((int)var1 +"."+(int)var2);
}
}
1
162
2
65.97
3
67.95
4
66.98
What will be the output of the following Java code?
class asciicodes
{
public static void main(String args[ ])
char var1 = 'A';
char var2 = 'a';
System. out. println((int)var1 +"."+(int)var2);
}
}