When I run the following code it doesn't give me the output that I've been excepted. Consider the following code-snippet:
public class T
{
public static void main(String arg[])
{
char a='3';
System.out.println(a+a);
}
}
The output here is : 102
Could please anybody explain that to me ?