鱼C论坛

 找回密码
 立即注册
查看: 2941|回复: 1

c语言问题

[复制链接]
发表于 2013-10-9 21:23:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 945402287 于 2013-10-10 15:12 编辑
#include<stdio.h>
struct stu
{
        int num;
        char name[20];
        float score;
};
void main()
{
        struct stu *findp( int number, struct stu *sp );
        struct stu student[5] = { { 1001, "Li ping", 55 }, { 1002, "zhang ping", 80 }, { 1003, "wang feng", 75 }, { 1004, "cheng lin", 82 }, { 1005, "wu yong", 94 } };
        int fnum;
        int i;
        struct stu *sap;
        printf("Enter the number:");
        scanf("%d", &fnum);
        sap = findp( fnum, student );
        if ( sap -> num != NULL )
        {
                printf("number:%d\n", sap -> num);
                printf("name:%s\n", sap -> name);
                printf("Score:%f\n", sap -> score);
        }
        else
                printf("Not found\n");
}
struct stu *findp( int number, struct stu *sp )
{
        int i;
        struct stu *stemp = NULL;
        for ( i = 0; i < 5; i++, sp++ )
                if ( sp -> num == number )
                {
                        stemp = sp;
                        break;
                }
                return ( stemp );
}
运行之后输入1006不是显示的Not found  而是出错了  这是为什么呢

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-10-10 23:53:54 | 显示全部楼层
if ( sap -> num != NULL )  这句,1006时sap本身是NULL,访问它的元素当然出错啦。试试if ( sap  != NULL ),就可以了!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-21 22:54

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表