Old stuff/ecole_etude_fac_de_pau/licence_3/systeme-d-exploitation/tp1/main.c
(Deskargatu)
#include <stdio.h>
#include <stdlib.h>
#include "liste.h"
int main()
{
int char='o';
int num;
char rue[50];
char ville[50];
int cp;
while(choix == 'o' || choix == 'O')
{
printf("Entrez les coordonnes d un utilisateur: ");
printf("Numero : ");
scanf("%d",&num);
printf("Rue : ");
scanf("%s",rue);
printf("Ville : ");
scanf("%s",ville);
printf("Code postal :");
scanf("%d",&cp);
}
Adresse* adr;
adr=CreerAdresse(1,"Richeilieu",90,"truc");
Personne* pr;
pr=CreerPersonne("Muriel","Sergio",adr);
liste* b;
liste_vide(&b);
AjouterPersonne(&b,&pr);
Personne* pr2;
pr2=CreerPersonne("Masson","Nicolas",adr);
AjouterPersonne(&b,&pr2);
Afficherliste(b);
}