单链表插入显示--为什么不出结果啊?
刚学数据结构,用C的,刚写了一小段,可是编译都没错,可就是没出结果,啥都不显示。请大虾们路过指点一下,哪的问题,是不是我哪理解的不对,或是哪有问题我看不出来?
#include<stdio.h>
#include<stdlib.h>
struct data{
int num;
struct data *forward;
};
struct data *ptr, *newelement, *record, *head;
main()
{
int i;
head=(struct data *)calloc(1,sizeof(struct data));
head->forward=NULL;
record=head;
for(i=0;i<5;i++){
newelement=(struct data *)calloc(1,sizeof(struct data));
newelement->forward=record;
record=newelement;
newelement->num=i;
record=head;
}
ptr=head;
while(ptr->forward!=NULL){
printf("%s\n",ptr->num);
ptr=ptr->forward;
}
return 0;
}