Question ++ in c [closed]
- by Niraj CHoubey
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
int b=5;
int c;
c=b++ + ++b;
outputs 12
while
b=b++ + ++b;
outputs 13.
Can someone help me please?