+ 1
Whatâs the â/*â?
int x = 3;/* x = 4; */++x; cout << x; Why does it also skip the â++xâ?
2 Answers
+ 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)