Fonction qui ecrit dans un fichier en C
Fermé
Thom@s
-
Modifié par Thom@s le 18/04/2012 à 19:41
scribedico Messages postés 47 Date d'inscription vendredi 13 avril 2012 Statut Membre Dernière intervention 6 mai 2013 - 18 avril 2012 à 21:53
scribedico Messages postés 47 Date d'inscription vendredi 13 avril 2012 Statut Membre Dernière intervention 6 mai 2013 - 18 avril 2012 à 21:53
A voir également:
- Fonction qui ecrit dans un fichier en C
- Fichier rar - Guide
- Comment ouvrir un fichier epub ? - Guide
- Comment réduire la taille d'un fichier - Guide
- Fonction si et - Guide
- Ouvrir un fichier .bin - Guide
1 réponse
scribedico
Messages postés
47
Date d'inscription
vendredi 13 avril 2012
Statut
Membre
Dernière intervention
6 mai 2013
2
Modifié par scribedico le 18/04/2012 à 21:56
Modifié par scribedico le 18/04/2012 à 21:56
Salut,
je vois 2 petits problèmes ( pour la compilation):
1) TAILLE_MAX_CHAINE n'est pas défini
2) il te manque un ';' pour fermer la définition de structure
->
#define TAILLE_MAX_CHAINE 100
typedef struct Personne Personne;
struct Personne
{
char prenom[TAILLE_MAX_CHAINE];
char nom[TAILLE_MAX_CHAINE];
int score1;
int nb_coups1;
int score2;
int nb_coups2;
};
je vois 2 petits problèmes ( pour la compilation):
1) TAILLE_MAX_CHAINE n'est pas défini
2) il te manque un ';' pour fermer la définition de structure
->
#define TAILLE_MAX_CHAINE 100
typedef struct Personne Personne;
struct Personne
{
char prenom[TAILLE_MAX_CHAINE];
char nom[TAILLE_MAX_CHAINE];
int score1;
int nb_coups1;
int score2;
int nb_coups2;
};