Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. char tab[nb_player][15];
  2.  
  3. for(;i<=nb_player;i++)
  4. {
  5.     player joueur;
  6.     char tempNom[15] = "";
  7.     printf("Nom du joueur %d ",i);
  8.     fgets(tempNom, sizeof(tempNom), stdin);
  9.     tab[i-1]=tempNom;
  10.     clean(tempNom, stdin);
  11.  
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement