+ 3
Int x=4 ; cout <<x<<++x<<++x; the output is 666 why ?
3 Réponses
+ 6
because the two ++ operations takes predecence and ONLY AFTER them the x's are printed
0
thanks 😊
0
switch the ++ to after the x that should produce the results I think you are looking for