the code like this:
int main()
{
int intArray[10000][10000]; //I got no problem,
//but I got problem in run time
//now I think the space demand
//is too large.
//now the question is, how can I know
//how large maximum will be stack?
// some code more ...
return 0;
}
int main()
{
int intArray[10000][10000]; //I got no problem,
//but I got problem in run time
//now I think the space demand
//is too large.
//now the question is, how can I know
//how large maximum will be stack?
// some code more ...
return 0;
}