← Back to Question List
C Quiz #39
While Loop Final Value
What does this code print?
📄 Code
1int i = 0;2while (i < 5) {3 i += 2;4}5printf("%d", i);
What does this code print?
1int i = 0;2while (i < 5) {3 i += 2;4}5printf("%d", i);