I made an array with 10 rows and 2 columns. Then I tried to access the element at the 100th row and 100th column. Why does this not give me an error:
#include <iostream>
int main () {
int (*myarr)[2] = new int[10][2]();
std::cout << myarr[100][100];
}