1.

What is the output of this program?
#include 
using namespace std;
int main ()
{
int p, q;
p = 6;
q = ++p * ++p;
cout << p< p = 6;
q = p++ * ++p;
cout < return 0;
}

A. 8 64
B. 8 48
C. 64 8 48
D. 8 64 8 48
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs