When I tried:
int global[10000][10000];
it works but when
int global[100000][100000];
when I try to access it it gives me error:
global was not declared in the scope.
Any answers ?
Here is my test code:
#include<iostream>
#include<bits/stdc++.h>
int global[100000][100000];
using namespace std;
int main(){
int i=0;
while(i<=10){
cout << global[i][i];
i++;
}
return 0;
}