#include <stdio.h>
#include <malloc.h>
typedef struct node
{
int data;
struct node* next;
}LINK;
void initlist(LINK** l)
{
*l = (LINK*)malloc(sizeof(LINK));
(*l)->next = NULL;
}
void main()
{
LINK* L=0;
initlist(&L);
}
LINK *L;别连在一起啊