Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/ecole_etude_fac_de_pau/licence_3/systeme-d-exploitation/tp1/1.c

(Deskargatu)
#include <stdio.h>
#include <stdlib.h>

#include "personne.h"


int main()
{
  Personne* p;
  Adresse* addr;
  addr  = CreerAdresse(5,"richelieu",10,"truc");
  p = CreerPersonne("Muriel","Sergio",addr);
  
  AffichePersonne(p);
  SupprimePersonne(&p);
}