0
This following piece of error code, does not read user data to allocate in 5x2 matrix, can not find the problem
int linha=0, coluna=0;
int matriz[5][2];
for(linha=0;linha < 5; linha++){
for(coluna=0;coluna < 2; coluna++){
scanf("%i", matriz[linha][coluna]);
}
printf("\n");
}
scanf("%i", &matriz[linha][coluna]);
orscanf("%d", &matriz[linha][coluna]);
– Fábio Morais
Ah yes, it is true, that lack of attention to mine. Thank you very much
– Lucas Marinzeck