1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int arr[] = {15, 25, 50};
cout << -2[arr];
return 0;
}

A. 15
B. 25
C. 50
D. -2
E. -50
Answer» F.


Discussion

No Comment Found

Related MCQs