Wednesday, 8 August 2012

Expression C=i++ causes | C++

a.    Value of i assigned to C and then i incremented by 1
b.    i to be incremented by 1 and then value of i assigned to C
c.    Value of i assigned to C
d.    i to be incremented by 1

Ans: a

No comments: