Question of pointer in c

Posted by Niraj CHoubey on Stack Overflow See other posts from Stack Overflow or by Niraj CHoubey
Published on 2010-05-11T08:32:10Z Indexed on 2010/05/11 8:34 UTC
Read the original article Hit count: 405

Filed under:
|
int b=5;
int c;
c=b++ + ++b;

outputs 12 while

b=b++ + ++b;

outputs 13. Can someone help me please?

© Stack Overflow or respective owner

Related posts about c++

Related posts about c