《C语言创建了一个链表函数,如何保存这个链表的头结点?》正文开始,本次阅读大概10分钟。
head=(node*)malloc(sizeof(node));/ /创建头结点head->next=NULL;while(n--){printf("\n请输入单链表第%d个结点的值:",i++);scanf("%d",p=(node*)malloc(sizeof(node));p->info=a;p->next=head->next;head->next=p;}追问能不能详细一点呢追答#include "stdio.h"typedef int datatype;typedef struct link_node{datatype info;struct link_node *next;}node;main(){int i=1,n,a;node *head,*