Programming Tutorials

Comment on Tutorial - Increment and Decrement Operator By aathishankaran



Comment Added by : max

Comment Added at : 2011-05-26 09:41:26

Comment on Tutorial : Increment and Decrement Operator By aathishankaran
int n = 0;
for (int m = 0; m < 5; m++) {
n = n++;
System.out.println(n);
}

output:
0
0
0
0
0


reason?


View Tutorial