Open In App

C++ | Misc C++ | Question 7

Like Article
Like
Save
Share
Report




#include<iostream>
using namespace std;
  
int x[100];
int main()
{
    cout << x[99] << endl;
}


This question is contributed by Sudheendra Baliga
(A) Unpredictable
(B) Runtime error
(C) 0
(D) 99


Answer: (C)

Explanation: The correct answer is c. In C++ all the uninitialized global variables are initialized to 0.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads