免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1524 | 回复: 3
打印 上一主题 下一主题

本人菜鸟,请教VC中的一个问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-05-01 21:52 |只看该作者 |倒序浏览
下面程序哪里写错了,请高人指出,谢谢啦:
#include "stdafx.h"
#include"string.h"
#include"stdlib.h"
#include"stdio.h"
struct stud_nod{
        int num;
        char name[20];
        int score;
        struct stud_nod *next;
};
struct stud_nod *creat()
{
        struct stud_nod *head,*tail,*p;
        int num,score;
        char name[20];
        int size=sizeof(struct stud_nod);
        head=tail=NULL;
        scanf("%d%s%d",&num,name,&score);
        while(num!=0)
        {
                p=(struct stud_nod*)malloc(size);
                p->num=num;
                strcpy(p->name,name);
                p->score=score;
                if(head==NULL)
                        head=p;
                else
                        tail->next=p;
                tail=p;
                scanf("%d%s%d",&num,name,&score);
        }
return head;
}
int main()
{
        struct stud_nod *head;
        head=creat();
                while(head!=NULL)
                {
                        printf("%8d %20s %6d\n",head->num,head->name,head->score);
                        head=head->next;
                }
}

运行后出现以下错误信息:

论坛徽章:
0
2 [报告]
发表于 2011-05-01 21:54 |只看该作者

论坛徽章:
0
3 [报告]
发表于 2011-05-02 00:03 |只看该作者
p->score=score;
下面加上
p->next=NULL;

论坛徽章:
0
4 [报告]
发表于 2011-05-02 09:01 |只看该作者
太感谢了,不出错了。请问为什么在p->score=score;下面加上p->next=NULL; 就好了,能说明一下么?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP