1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int num = 20;
for ( ; ;)
cout << num;
return 0;
}

A. 20
B. Compilation Error
C. Runtime Error
D. infinite times of printing num
E. None of these
Answer» E. None of these


Discussion

No Comment Found