What is output by the following code?
int i = 0;
do {
cout << i << “ “;
++i;
} while (i < 0);
a. 0
b. 0 1
c. syntax error
d. Nothing
Expert Answer
An answer will be send to you shortly. . . . .
What is output by the following code?
int i = 0;
do {
cout << i << “ “;
++i;
} while (i < 0);
a. 0
b. 0 1
c. syntax error
d. Nothing
An answer will be send to you shortly. . . . .