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.
21 lines
429 B
21 lines
429 B
#include "SAEl.h"
|
|
|
|
|
|
void globale(void) {
|
|
int tailleL, i;
|
|
VilleIUT** tab;
|
|
char nomFich[20];
|
|
strcpy(nomFich,"iut.txt");
|
|
tab = chargementVille(nomFich,30,&tailleL);
|
|
for(i = 0 ; i < tailleL ; i++) {
|
|
printf("Ville : %s\n",tab[i]->ville);
|
|
affichageListeDept(tab[i]->idDept);
|
|
}
|
|
creationDept(tab,tailleL);
|
|
SauvegarderIUT(tab,tailleL);
|
|
}
|
|
|
|
int main(void) {
|
|
globale();
|
|
return 0;
|
|
} |