← Back to Question List
C# Quiz #44
do-while Runs at Least Once
What does this code print?
📄 Code
1int i = 5;2do {3 Console.Write(i);4 i++;5} while (i < 3);
What does this code print?
1int i = 5;2do {3 Console.Write(i);4 i++;5} while (i < 3);