#include "averiles.h" 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; } void print(Liste x) { Liste ptr; for (ptr= x; ptr!= NULL; ptr=ptr->next) { printf("%d -> ", ptr->val); } printf("\n"); } main() { init(); Liste x=create(); print(x); }