If not declare value in an array, then what value hold on the memory address.
Where did these outputs come from?
int main()
{
int a[10];
cout<<a[2]<<endl;
cout<<a[2]<<endl;
cout<<a[3]<<endl;
cout<<a[3]<<endl;
return 0;
}
//Given Output
//1978190368
//1978190368
//1129149863
//1129149863