Q-1-2 List the output of the following code that is part of a complete C++ Program. (4 Marks) for (int i = 1; i < 5; i++
Posted: Fri Jul 08, 2022 6:34 am
Q-1-2 List the output of the following code that is part of a complete C++ Program. (4 Marks) for (int i = 1; i < 5; i++) { if (i >= 3) cout << <<endl; ***** else cout << "STOP" << endl; }