>>int x[][]
You can't do that. You must specify the outer dimension, so it must be something like
int x[][size]
Where size is some constant expression (eg, a number).