You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
436 B
18 lines
436 B
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct{
|
|
char nom[21];
|
|
char cdmat[6];
|
|
float moyenne;
|
|
} Resultat;
|
|
|
|
Resultat lireResultat(FILE *fe);
|
|
void afficheResultat(Resultat c);
|
|
Resultat *chargeTresultat(char *nomFic, int *nbres);
|
|
void afficheTresultat(Resultat *tab, int nbres);
|
|
void sauveTresultat(Resultat *tRes, int nbres);
|
|
Resultat *restaureTresultat(char *nomFic, int *nbres);
|
|
void global(void);
|