Etudes/BTS/C/Premiere annee/structure/biblio.h

18 lines
328 B
C
Raw Normal View History

2016-10-14 15:11:52 +00:00
#ifndef BIBLIO_H_INCLUDED
#define BIBLIO_H_INCLUDED
#define TAILLEMAX 50
typedef struct{
char nom[TAILLEMAX];
char prenom[TAILLEMAX];
unsigned int annee;
float taille;
float poids;
}typePersonne;
typePersonne creePersonnePtr();
void affichePersonnePtr(typePersonne personne);
#endif // BIBLIO_H_INCLUDED