A
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;
}
using namespace std;
int arr[50];
int main()
{
cout << arr[49] << endl;
}
- Correct Answer - Option(C)
- Views: 24
- Filed under category C++
- Hashtags:
Discusssion
Login to discuss.