1.

#include <iostream>using namespace std;int main()    {        int x = 1, y = 3, z = 5;        int *lfc[ ] = {&x, &y, &z};        cout << lfc[1];        return 0;    }
12.What is the output of this program?

A. ABCDEFGHIJ
B. AAAAAAAAAA
C. JJJJJJJJ
D. None of the mentioned
Answer» B. AAAAAAAAAA


Discussion

No Comment Found

Related MCQs