I have an issue. I want to use the size defined by user in the matrix, but I have that error...
Any idea?
I'm using the C Language
int play(int matrix[][],int sz, char play_user[1]){
if (play_user[0] =='a'){
int left();
left(matrix[sz][sz],sz);
}
int left(int matrix[][], int sz){
for(int i=0;i<sz;++i){
for(int j=0;j<sz;++j){
printf("%d\t", matrix[i][j]);
}
printf("\n");
}