+ 1
What’s the “/*”?
int x = 3;/* x = 4; */++x; cout << x; Why does it also skip the “++x”?
2 Respuestas
+ 8
Not /*
It is /* */ which is use for multiple line comments
It will not skip ++x
it will skip only x = 4
x will be 4
+ 1
Ooooh, ok so it’s “++x” gets 4 because x is still 3(unfortunately this app doesnt have replies)