#include #include #include using namespace std; int main() { int array1[] = { 1, 2 } ; int array2[] = {2, 4} ; cout << array1[4] << endl ; // What's the problem here ? // cout << array1[900000] << endl ; return(0) ; }