int array[x][x];
I want to find the largest value(EXACT value, like: x=20) of x that can compile without any error. Any ideas? Thanks!
Update: I post the original question below, I hope I didn't misunderstand something.
By trial and error, discover what the largest value of x can be in the following program so that it still compiles and runs without error:
main(){
int array[x][x];
array[0][0] = 0;
}
Print this value of x.