show/hide this revision's text 2 edited tags
show/hide this revision's text 1

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;