0
What the difference?
Hi everyone! Tell someone please why cout<<x++++; give an error and cout<<(x-++--x); give output?
2 odpowiedzi
+ 15
cout << x-++--x;
is actually interpreted as:
cout << x - (++(--x));
and
cout << x++++;
is simply not legit.
0
why not working (x++)++ as x+=2 after code string executed? simply not legit is not an answer i looking for here