+ 17
int x=5; case 1) int y = ++x; //y is 6 here & x becomes 6 case2) int y = x++; //y is 5 here & x becomes 6 //hope it helps â˜ș
14th Oct 2017, 3:57 AM
Gaurav Agrawal
Gaurav Agrawal - avatar