Programming Tutorials

Comment on Tutorial - Increment and Decrement Operator By aathishankaran



Comment Added by : shivom

Comment Added at : 2012-01-15 07:16:49

Comment on Tutorial : Increment and Decrement Operator By aathishankaran
sir, in this example,which value of n is being stored in the memory location?
i mean its n=n++;
in 1st iteration (l.h.s)n=0 and (r.h.s)(n=n+1 after its usage (n=0)by n)
shouldnt the incremented value of n be printed in every iteration???


View Tutorial