1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int array[] = {40, 15, 23, 71};
int *p = (array + 2);
cout << array;
return 0;
}

A. 40
B. 15
C. 23
D. 71
E. Address of arr
Answer» F.


Discussion

No Comment Found

Related MCQs