#include "prototype.h" Liste inscription(Liste lCand, int nbInsc) { Candidat c; printf("Veuillez rentrer votre nom et prénom : "); scanf("%s%*c%s", c.nom, c.prenom); printf("Entrez les notes : "); scanf("%f %f %f %f", c.lNote[0], c.lNote[1], c.lNote[2], c.lNote[3]); c.nbChoix=0; c.lChoix=NULL; c.numC=nbInsc + 1 } void affichage(Liste l) { printf("Numéro \t Prénom \t Nom \t Notes \t Nombre voeux \t Voeux\n"); }