1.

What is the output of the following program?
#include 
using namespace std;
int main()
{
int n = 0x10 + 030 + 50;
cout << sizeof(n)< return 0;
}

A. 0x10 + 030 + 50
B. 030 + 50
C. 0x10 + 030
D. Depends on compiler
E. Garbage
Answer» E. Garbage


Discussion

No Comment Found

Related MCQs