1.

What is the output of this program?
#include 
using namespace std;
int main ()
{
int i;
for (i = 10; i > 0; i--)
{
cout << i< if (i == 8)
break;
}
return 0;
}

A. 10 0
B. 0 10 8
C. 10 9 8
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found