标题:链式表定义 分配空间语句错误 求大神帮忙看看
取消只看楼主
夜的寂静
Rank: 2
等 级:论坛游民
帖 子:6
专家分:24
注 册:2011-11-8
结帖率:100%
已结贴  问题点数:20 回复次数:1 
链式表定义 分配空间语句错误 求大神帮忙看看
程序代码:
#include<stdio.h>
#include<malloc.h>
#include<conio.h>
#define len sozeof(struct student);
#define null 0;

struct student                           //声明
{long num;
int score;
student *next;
};

int n;

struct student *creat()                       //创建单链表
{struct student *head;
struct student *p1,*p2;
n=0;
p1=p2=(struct student*)malloc(len);     //这里报错:“student”的前面应有“)”  “sozeof”: 找不到标识符
scanf("%ld,%d",&p1->num,&p1->score);
head=null;
     while(p1->num!=0)
     {n=n+1;
         if(n==1)      head=p1;
         else          p2->next;
     p2=p1;
     p1=(struct student *)malloc(len);
     scanf("%ld%d\n",&p1->score);
     }

 p2->next=null;

 return(head);
}

最好有关于malloc函数使用方法和范本,谢谢
搜索更多相关主题的帖子: 空间 null 
2011-11-17 10:37
夜的寂静
Rank: 2
等 级:论坛游民
帖 子:6
专家分:24
注 册:2011-11-8
得分:0 
额……眼挫了
2011-11-17 16:29



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




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

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