← Back to Question List
C++ Quiz #14
While Loop Condition
What is the output of this code?
📄 Code
1#include <iostream>2using namespace std;34int main() {5 int i = 1;6 while (i <= 3) {7 cout << i << " ";8 i++;9 }10 cout << endl;11 return 0;12}