1.

What is the output of the following program?
#include 
using namespace std;
int main()
{
int p = 10;
float q;
cout << sizeof(++p + q);
cout << " "<

return 0;
}

A. 10 2
B. 10 4
C. 2 10
D. 10 0
E. 4 10
Answer» F.


Discussion

No Comment Found

Related MCQs