Old stuff/ecole_etude_fac_de_pau/licence_3/systeme-d-exploitation/tp1/main2.c
(Deskargatu)
#include <stdio.h>
#include <stdlib.h>
#include "liste.h"
int main()
{
char choix='o';
int num;
char nom[50];
char prenom[50];
char rue[50];
char ville[50];
int cp;
liste* b;
liste_vide(&b);
Adresse* adr;
Personne* pr2;
while(choix == 'o' || choix == 'O')
{
printf("Entrez les coordonnes d un utilisateur: ");
printf("Nom : ");
scanf("%s",nom);
printf("Prenom : ");
scanf("%s",prenom);
printf("Numero : ");
scanf("%d",&num);
printf("Rue : ");
scanf("%s",rue);
printf("Code postal :");
scanf("%d",&cp);
printf("Ville : ");
scanf("%s",ville);
adr=CreerAdresse(num,rue,cp,ville);
pr2=CreerPersonne(nom,prenom,adr);
AjouterPersonne(&b,&pr2);
printf("Voulez vous entrer une autre personne ? [o/n] ");
// if (fflush(stdin) == -1) { perror("Erreur fflush"); exit(-1); }
getchar();
scanf("%c",&choix);
}
Afficherliste(b);
}