Affichage en C

Fermé
bernard - 14 févr. 2010 à 14:32
 bernard - 14 févr. 2010 à 14:43
Bonjour,
j'ai un écrit un petit code pour produire un affichage, il compile bien, s'éxécute très bien mais n'affiche rien, le voici:

struct toto {
struct tutu tab1[10];
_Bool tab2[10];
};

void init(struct toto *t){
int i;
for(i=0;i<10;i++){
g->tab2[i] = 0;
printf("%d ", t->tab2[i]);
}
}

ce n'est pas très normal qu'en pensez vous? merci .

1 réponse

ah si ça marche ça ira merci :-)
0