diff --git a/TP4/src/etudiant.h b/TP4/src/etudiant.h new file mode 100644 index 00000000..d44a12e9 --- /dev/null +++ b/TP4/src/etudiant.h @@ -0,0 +1,14 @@ +#ifndef ETUDIANT_H +#define ETUDIANT_H + +typedef struct +{ + char nom[50]; + char prenom[50]; + char adresse[150]; + int note1; + int note2; + +} Etudiant; + +#endif