1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int array[] = {41, 15, 61, 27};
int *ptr = (array + 3);
cout << *ptr;
return 0;
}

A. 41
B. 15
C. 61
D. 27
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs