1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int num = 12;
if (num < 13)
{
T:
cout << num;
goto T;
}
break;
return 0;
}

A. 12
B. 13
C. Compilation Error
D. Runtime Error
E. None of these
Answer» D. Runtime Error


Discussion

No Comment Found