← Back to Question List
C# Quiz #43
Breaking Out of a while Loop
What does this code print?
📄 Code
1int i = 0;2while (true) {3 if (i == 3) break;4 Console.Write(i);5 i++;6}