bonjour
a tout le monde
bon je vient posé mon petit bug perso sur ce beau forum
et j'espert trouvee quelqun qui poura repondre a ma question
bon j'attack
dabord la source :
/*debut */
#define MAX 100
//fonction afficher le tableau
void afficher(int T[][],int l,int L)
{
int i=0,j=0,c;
while (j<=l){
printf("\n" );
while (i<=L){
c=T[j][i];
printf("%d",c);
i=i+1;
}
printf("\n" );
j=j+1;
}
return;
}
int main(void)
{
int T1[2][3] = {{1,2,3},{1,2,3}};
afficher(T1,3,2);
return 0;
}
/*fin*/
voila alors on me dit a al compilation:
invalid use of array with unspecified bounds ligne 9
cad la ligne ou c marquer:
c=T[j][i];
voilà
bon bin si ya quelqun qui a une idee j'aimerai bien pouvoir compiler ce bordel pour avancer mon bouleau
merci de m'avoir lu meme si vous n'aver pas d'idée c simpas d'essayer..