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;
}