Matheo THIERRY 2 years ago
commit b15cb8317f

@ -11,10 +11,23 @@
// Partie 1 // Partie 1
void affichageVilleIUT() {
printf("%s\t%s\t%d\t%s")
}
int rechercheVille() {
}
VilleIUT lire(FILE * fe) {
VilleIUT v;
fscanf(fe, "%s", V.ville);
fscanf(fe, "%s", v.Idept->departement);
fscanf(fe, "%d", v.Idept->nbplace);
fgets(v.Idept->responsable, 31, fe);
v.Idept->responsable[strlen(v.Idept->responsable)-1] = '\0';
return v;
}
// Partie 2 // Partie 2

Loading…
Cancel
Save