gpt4 book ai didi

c - 子程序中的 fprintf()

转载 作者:行者123 更新时间:2023-11-30 14:25:39 27 4
gpt4 key购买 nike

当我尝试在子程序中写入文件时,我陷入了困境。

void new_page(float *a, float *b, float *c, int *d){
fprintf(results,"\nPage Totals: %f\t%f\t%f\t%d", *a,*b,*c,*d);
}

我收到一条警告

Warning: incompatible implicit declaration of built-in function 'fprinf' [enabled by default]

"error: 'results' undeclared (first use in this function)"

在主 fprintf 中工作正常,只是当涉及到子程序/函数时它就不起作用了。根据我的理解,它认为结果未声明,所以我是否必须传递文件的名称或位置才能使其工作?

最佳答案

除非 results 是全局的,否则它是未定义的。

从表面上看,您已经在 main 中打开了一个文件(流)作为结果。如果是这样,它只存在于 main 范围内。

将其传递给函数。不建议将其设为全局。

<小时/>

它看起来像:

void new_page(FILE *results,  float *a, float *b, float *c, int *d){
fprintf(results,"\nPage Totals: %f\t%f\t%f\t%d", *a,*b,*c,*d);
}
<小时/>

还有;如果您将此函数放在单独的文件中,则 main() ,正如您所说,fprintf 可以工作 - 您必须包含 stdio.h也在该文件中。

<小时/>

编辑:听起来您对该函数签名和原型(prototype)等做了错误的事情。

作为一个简单的示例(无需对 fopen 等进行检查):

#include <stdio.h>

void foo(FILE * fp)
{
fprintf(fp, "HELLO\n");
}

int main(void)
{
FILE *fp;

fp = fopen("blabla", "w");
foo(fp);
fclose(fp);

return 0;
}

还有;你说你的编译器没有提示。您是否使用了广泛的警告?如果没有,你应该这样做。即海湾合作委员会:

$ gcc -Wall -Wextra -pedantic -o my_prog my_source.c

我通常还会添加 -std=c89,或者如果需要的话,添加 -std=c99

然后用 valgrind 运行它:

$ valgrind ./my_prog

这两个步骤将为您提供大量提示和线索,让您了解哪里可能出错。

关于c - 子程序中的 fprintf(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10133135/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com