1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int p = 3, q = 5, r = 13;
int *array[ ] = {&p, &q, &r};
cout << array[1];
return 0;
}

A. 5
B. 3
C. 13
D. Compilation Error
E. Random number
Answer» F.


Discussion

No Comment Found

Related MCQs