请问一个链表问题
//将24个字母写入链表,编译没错,运行出错
#include "stdio.h"
struct node
{
int date;
struct node *next;
};
struct node *p;
main()
{
char c;
for(c=122;c>=97;c--)
{
p->date=c;
p=p->next;
}
p->next=NULL;
}
[此贴子已经被作者于2007-1-8 17:18:50编辑过]