When i run this code, it breaks
main(){
long a[1000][1000];
}
but when i change to this,
long a[1000][1000];
main(){}
it runs well.
I assumed that there is the memory limit inside-function variables, am i right ?
If so, what is the memory limit (in bytes) for those ?