C++ | Misc C++ | Question 7ReadDiscussCoursesPracticeImprove Article ImproveSave Article SaveLike Article Like#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) 99Answer: (C)Explanation: The correct answer is c. In C++ all the uninitialized global variables are initialized to 0.Quiz of this QuestionLast Updated : 28 Jun, 2021Like Article Save Article Please Login to comment...