CPA-21-02 Web TestEngine demo

Exit VCEDump CPA-21-02 CPA - C++ Certified Associate Programmer
Question 34 of 39
0% complete
Q34 Single choice

If there is one, point out an error in the program

#include <iostream>

using namespace std;

int main()

{

int i=1;

for(;;)

{

cout<<i++;

if(i>5)

break;

}

return 0;

}

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in