CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #39

While Loop Final Value

mediumLoops

What does this code print?

📄 Code

1int i = 0;
2while (i < 5) {
3 i += 2;
4}
5printf("%d", i);