Tagged Questions
12
votes
9answers
2k views
C++ Mystery
Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out.
int i = 5;
i = ++i + ++i;
cout<<i;