标题:exit(0);
取消只看楼主
csj_65
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:63
专家分:163
注 册:2010-3-12
结帖率:100%
已结贴  问题点数:20 回复次数:1 
exit(0);
程序代码:
#include <stdio.h>
int main(void)
{
    struct person
    {
        char name[20];
        char sex;
        int age;
        float height;
    }person1;

    FILE *fp;
    int i;
    char fname[20];
    printf("please input file name:\n");
    scanf("%s",fname);
    printf("please input three person's name,sex,age and height:\n");

    if ((fp = fopen(fname,"wb")) == NULL)
    {
        printf("cannot open this file!\n");
        return 0;
    }

    for (i=1 ;i<4 ;i++)
    {
        scanf("%s %c%d%f",person1.name,&person1.sex,&person1.age,&person1.height);
        if ((fwrite(&person1, sizeof(person1), 1, fp)) != 1)
        {
            printf("write error!\n");
            return 0;
        }
    }

    fclose(fp);

    printf("the content of the file is:\nNAME\t\tsex\tage\theight\n");

    if ((fp = fopen(fname,"wb")) == NULL)
    {
        printf("cannot open this file!\n");
        return 0;
    }

    for (i=1; i<4; i++)
    {
        if ((fread(&person1, sizeof(person1), 1, fp)) == 1)
        {
            printf("%-16s%-8c%-8d%-10.2f",person1.name,person1.sex,person1.age,person1.height);
        }

    }

    fclose(fp);

    return 0;
}
这个程序从书上弄来的,exit(0);语句编译的时候提示函数未申明而无法编译,而书上也没有申明,这是为什么呢?
搜索更多相关主题的帖子: exit 
2010-03-20 22:25
csj_65
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:63
专家分:163
注 册:2010-3-12
得分:0 
对不起没说清楚。程序中间的return 0;原本是exit(0);
这个头文件果然可以,请问二楼,这个头文件的作用是什么呢?
2010-03-21 10:17



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




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

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