链表基础:结构体变量和结构体指针 #include <stdio.h>#include <malloc.h>typedef struct node { struct node*next; int d ...