Question: What will the following code display? int x = 0; { cout < < x < < ; x++; } while (x < 5)
What will the following code display?
int x = 0;
{
cout << x << " ";
x++;
}
while (x < 5)
0
4
5
This is an infinite loop
there will be a compiler error
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
