1.

What is the output of this program?
#include 
using namespace std;
int main()
{
typedef int number;
typedef char name;
name n = "Interview Mania";
number P = 12, Q = 25;
number R = P + n;
cout << R;
return 0;
}

A. Interview Mania12
B. 25Interview Mania
C. Compilation Error
D. Garbage Value
E. Runtime Error
Answer» D. Garbage Value


Discussion

No Comment Found

Related MCQs