typedef struct List { struct List *next; int val; }* Liste; Liste create(){ Liste y,z; y=NULL; int value; value=0; while(any){ z=malloc(sizeof(struct List)); z->next=y; z->val=value; value=value+1; y=z; } return z; }