| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 290 人关注过本帖
标题:???????
取消只看楼主 加入收藏
wanyi8358
Rank: 1
来 自:南昌
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-3-1
结帖率:0
收藏
已结贴  问题点数:20 回复次数:0 
???????
#define NULL 0
#define LEN sizeof(struct student)
#include <stdlib.h>
struct student
{long num;
float score;
struct student *next;
};
struct student *creat(int n)
{
    int i;
struct student *head=NULL,*p1,*p2;
head=p2=(struct student *)malloc(LEN);
scanf("%1d%f",&p2->num,&p2->score);
for(i=2;i<=n;i++)
{
p1=(struct student*)malloc(LEN);
scanf("%1d%f",&p1->num,&p1->score);
p2->next=p1;
p2=p1;
}
p2->next=NULL;
return(head);
}
帮忙看下啥问题?????????
搜索更多相关主题的帖子: return 
2011-04-06 18:03
快速回复:???????
数据加载中...
 
   



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

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