gpt4 book ai didi

我的 Kali Linux 中未编译 C 程序

转载 作者:行者123 更新时间:2023-11-30 15:21:56 26 4
gpt4 key购买 nike

我的sample.c程序:

#include <stdio.h>

int main()
{
printf(“Hello, World!\n”);
return 0;
}

当我想编译它时,我看到这个错误(作为root):

cd ~/Desktop
x86_64-w64-mingw32-gcc sample.c -o file.exe

输出:

sample.c: In function ‘main’:
sample.c:5:2: error: stray ‘\342’ in program
sample.c:5:2: error: stray ‘\200’ in program
sample.c:5:2: error: stray ‘\234’ in program
sample.c:5:12: error: ‘Hello’ undeclared (first use in this function)
sample.c:5:12: note: each undeclared identifier is reported only once for each function it appears in
sample.c:5:18: error: expected ‘)’ before ‘World’
sample.c:5:18: error: stray ‘\’ in program

sample.c:5:18: error: stray ‘\342’ in program
sample.c:5:18: error: stray ‘\200’ in program
sample.c:5:18: error: stray ‘\235’ in program

我无法编译任何C 格式文件。我该如何修复它?

注意:它交叉编译到 Windows,因此“file.exe”

最佳答案

这是由于您的编辑。 (引号)和 " 是不同的, 导致了错误。尝试使用

#include <stdio.h>

int main()
{
printf(“Hello, World!\n”);
return 0;
}

尝试其他代码编辑器。

关于我的 Kali Linux 中未编译 C 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29422443/

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