标题:求解!!!链表,究竟是哪里出错
取消只看楼主
hd小狼崽
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2012-12-7
结帖率:100%
已结贴  问题点数:20 回复次数:3 
求解!!!链表,究竟是哪里出错
#include<stdio.h>
#include<malloc.h>
#define NULL 0
#define LEN sizeof(struct student)
struct student
{
    long num;
    float score;
    struct student *next;
};
int n;

struct student *creat(void)
{
    struct student *head;
    struct student *p1,*p2;
    n=0;
    p1=p2=(struct student *)malloc(LEN);
    scanf("%ld,%f",&p1->num,&p1->score);
    head=NULL;
    while(p1->num!=0)
    {
        n=n+1;
        if(n==1)head=p1;
        else p2->next=p1;
        p2=p1;
        p1=(struct student *)malloc(LEN);
        scanf("%ld,%f",p1->num,p1->score);
    }
    p2->next=NULL;
    return(head);
}

出现的错误提示:--------------------Configuration: 6.c - Win32 Debug--------------------
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/6.c.exe : fatal error LNK1120: 1 unresolved externals
搜索更多相关主题的帖子: head next include 
2012-12-07 16:15
hd小狼崽
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2012-12-7
得分:0 
回复 2楼 yuccn
大神啊!!!!一眼就看出问题所在。佩服。。。
2012-12-08 13:48
hd小狼崽
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2012-12-7
得分:0 
回复 3楼 wu_jian_long
不错不错,你写的代码让我发现我的代码的不少问题
2012-12-08 13:50
hd小狼崽
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2012-12-7
得分:0 
第一次感觉到论坛的收益匪浅啊,,,,决定以后要多逛论坛了!!!!!
2012-12-08 13:52



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-390043-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.536998 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved