Q-1-2 List the output of the following code that is part of a complete C++ Program (4 Marks) for (int i = 3; i <7; 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 = 3; i <7; i++) { } for (int k = 2; k<i; k++) cout <<<"*"; cout<<endl;