1.

What is the output of this program?
#include 
using namespace std;
int main()
{
void num0 = 15, num1 = 16;
int num2;
num2 = num0 + num1;
cout << num2;
return 0;
}

A. 31
B. Runtime Error
C. Compile time Error
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found

Related MCQs