编译 "Hello World" 程序时出错
Error in compilation of "Hello World" program
我正在尝试 运行 在我的 mac 上使用 CodeBlocks IDE:
下面的一个简单程序
1. #include <stdio.h>
2. int main()
3. {
4. // printf() displays the string inside quotation
5. printf("Hello, World!");
6. return 0;
7. }
但我收到以下错误:
error: expected identifier or '('
由于 machine 正在尝试编译,我认为 gcc 编译器工作正常。
尝试不同的 IDE 并找出问题出在 Codeblocks IDE 配置中还是编译器本身。
Remove the line numbers, that's the problem.
我正在尝试 运行 在我的 mac 上使用 CodeBlocks IDE:
下面的一个简单程序 1. #include <stdio.h>
2. int main()
3. {
4. // printf() displays the string inside quotation
5. printf("Hello, World!");
6. return 0;
7. }
但我收到以下错误:
error: expected identifier or '('
由于 machine 正在尝试编译,我认为 gcc 编译器工作正常。
尝试不同的 IDE 并找出问题出在 Codeblocks IDE 配置中还是编译器本身。
Remove the line numbers, that's the problem.