I=0; // Asigns 0 to variable II = I++ // I++ is post increment, means it increment the value of I to One (1) but returns the original value i.e. 0 ( Zero ). And now this 0 is again assigned to I. Setting I value 0 ( Zero )At the end value of variable I is 0