Tfe

Ongi etorri tfe-ren webgunera...

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

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


int main()
{
  Adresse* p;
  p = CreerAdresse(1,"Richelieu",90,"test");
  AfficheAdresse(p);
  SupprimeAdresse(p);

}