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
412 B

#include "SAEl.h"
void globale(void) {
int tailleL, i;
VilleIUT** tab;
char nomFich[20];
strcpy(nomFich,"iut.txt");
printf("charg\n");
tab = chargementVille(nomFich,30,&tailleL);
printf("affich\n");
for(i = 0 ; i < tailleL ; i++) {
printf("Ville : %s\n",tab[i]->ville);
affichageListeDept(tab[i]->idDept);
}
}
int main(void) {
globale();
return 0;
}