0
The code was supposed to print the numbers from 0 to 10. Why the output is reversed?
2 Antworten
+ 3
Modifying data and using it again between two sequence points leads to *undefined behaviour*, a topic every C writer has to accustom themselves with.
https://en.m.wikipedia.org/wiki/Undefined_behavior
0
Iterations are tricky constructs.