I have question about my code in java. I have variable with type data char, with 2 plus '+',
why the result of the code is integer?
public static void main(String args[]) {// kumpulan dari kata kata
char exampleChar1;
exampleChar1 = 'A';
exampleChar1++;
System.out.println("result of exampleChar1 is : " + + exampleChar1); // result is : result of exampleChar1 is : 66
}