1.

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

A. 40
B. 15
C. 60
D. 17
E. 48
Answer» F.


Discussion

No Comment Found

Related MCQs