From 9f6d94ed12eda91eacaa190d6dbe6b88e56a5c82 Mon Sep 17 00:00:00 2001 From: karimkamoura-hash Date: Wed, 17 Dec 2025 20:01:38 +0100 Subject: [PATCH] Create etudiant.h --- TP4/src/etudiant.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 TP4/src/etudiant.h 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