parent
2998e7ae12
commit
0fbcd3654d
@ -1,16 +1,8 @@
|
|||||||
Clermont-Ferrand
|
Clermont-Ferrand
|
||||||
2
|
2
|
||||||
Informatique
|
Informatique 130 Bouhours Cédric
|
||||||
130
|
Réseaux 5 Unmec Sympa
|
||||||
Bouhours Cédric
|
|
||||||
Réseaux
|
|
||||||
5
|
|
||||||
Unmec Sympa
|
|
||||||
Lyon
|
Lyon
|
||||||
2
|
2
|
||||||
Jeux-videos
|
Jeux-videos 24 Kojima Hideo
|
||||||
24
|
GEA 8 Macron Emmanuel
|
||||||
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