From 2e6abdaab1adcb2e5fb3bb14afb5a9af8e65d144 Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Thu, 12 Jan 2023 22:48:24 +0100 Subject: [PATCH] Modification structure Candidat pour partie III --- src/structures.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures.h b/src/structures.h index 2290052..bc90d3b 100644 --- a/src/structures.h +++ b/src/structures.h @@ -27,7 +27,7 @@ typedef Candidature** ListeCandidatures; typedef struct { int id; char nom[LEN_MAX], prenom[LEN_MAX]; - float moyenneMath, moyenneFrancais, moyenneAnglais, moyenneSpecialite; + float moyenneMath, moyenneFrancais, moyenneAnglais, moyenneSpecialite, noteGlobale; int nbCandidatures; ListeCandidatures listeCandidatures; } Candidat;