gpt4 book ai didi

C - 'file' 错误的冲突类型

转载 作者:太空宇宙 更新时间:2023-11-04 08:49:28 26 4
gpt4 key购买 nike

当我尝试编译我的 C 程序时,出现以下错误:

file.c:16:1: error: conflicting types for 'file'

关于这段代码:

char *filename = "dictionary.txt";
FILE *file;
file = fopen(filename, "a+");

我已将这篇文章用作引用: C File I/O and Binary File I/O

非常感谢任何帮助,并提前致谢。

编辑:这是完整的代码 http://pastebin.com/3iMmGzfk

最佳答案

使用这段代码,我得到了相同的错误:"file"类型冲突。注意在同一范围内两次定义文件。

#include <stdio.h>

int main(void) {
int file = 0;

char *filename = "dictionary.txt";
FILE *file;
file = fopen(filename, "a+");

return 0;
}

确保在同一范围内没有另一个名为 file 的变量应该可以解决问题。

例如,我在这个版本中没有遇到编译错误:

#include <stdio.h>

int main(void) {
int file = 0;

{
char *filename = "dictionary.txt";
FILE *file;
file = fopen(filename, "a+");
}
return 0;
}

关于C - 'file' 错误的冲突类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20179896/

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