简单静态链表 编译可以 运行不了求解
#include <iostream>using namespace std;
struct node
{
int date;
node *next;
};
int main()
{
node *p,*head;
int i=0;
head=p;
for(i;i<10;i++)
{
p->next=new node;
p=p->next;
p->date=rand();
}
p->next=0;
while(p->next=0)
p=head->next;
{cout<<p->date<<endl;
p=p->next;
}
return 0;
}
编译能通过 但运行不了;
我的目的是随机数组成一个链表
然后链表输出。这个算是静态链表吧 。 我哪个地方错 了 ,