0
What is the result of following
void main () { int i=5; i+=i+++i+i++; cout<<i; }
3 Respuestas
+ 7
Undefined behavior. The output varies from different compilers.
+ 5
Output : 24
+ 3
just plug it into the code playground....
void main () { int i=5; i+=i+++i+i++; cout<<i; }