+ 2
Why will this 'for' loop loop (albeit just once)?
int x; int main() { for (; x>=0; --x); return 0; } I don't understand the 3rd line. Why will this 'for' loop execute once? The initial value is not even set...
4 Answers
int x; int main() { for (; x>=0; --x); return 0; } I don't understand the 3rd line. Why will this 'for' loop execute once? The initial value is not even set...