1.

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

A. 25
B. 12
C. 50
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found

Related MCQs