Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/ecole_etude_fac_de_pau/licence_2/struct/tp6/tp6.c

(Deskargatu)
#include <stdio.h>
#include <stdlib.h>
#define Element char

struct noeud
{
  noeud* g;
  noeud* d;
  Element* etiquette;
};



typedef noeud NOEUD;
typedef noeud* arbre; 


arbre arbre_vide(){
  return NULL;}







int main()
{
  char test[10]="youpi";
  noeud n;
  n.etiquette = test;
  n.g=NULL;
  n.d=NULL;

}