Tfe

Ongi etorri tfe-ren webgunera...

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;

}