Are they the same values? They may have been initialized with the same initial value but does it remain like so?

Do this in your compiler:


int a = 5;
System.out.println(a);
a++;...