Q. What is the output of the following C++ code?
Code:
#include<iostream>
using namespace std;
int arr[50];
int main()
{
cout << arr[49] << endl;
}
β
Correct Answer: (C)
0