parent
2998e7ae12
commit
0fbcd3654d
@ -1,16 +1,8 @@
|
||||
Clermont-Ferrand
|
||||
2
|
||||
Informatique
|
||||
130
|
||||
Bouhours Cédric
|
||||
Réseaux
|
||||
5
|
||||
Unmec Sympa
|
||||
Informatique 130 Bouhours Cédric
|
||||
Réseaux 5 Unmec Sympa
|
||||
Lyon
|
||||
2
|
||||
Jeux-videos
|
||||
24
|
||||
Kojima Hideo
|
||||
GEA
|
||||
8
|
||||
Macron Emmanuel
|
||||
Jeux-videos 24 Kojima Hideo
|
||||
GEA 8 Macron Emmanuel
|
||||
|
@ -1 +1,21 @@
|
||||
#include "SAEl.h"
|
||||
#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;
|
||||
}
|
Loading…
Reference in new issue