简单的 C hello world 程序无法在 Visual Studio Code 中运行

简单的 C hello world 程序无法在 Visual Studio Code 中运行

我对 C 语言编程还不太熟悉,无法使用 Visual Studio Code 编写简单的 C hello world 代码。代码如下:

#include <stdio.h>
int main() {
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0;
} 

我收到两条错误消息:

line 2: syntax error near unexpected token `('
line 2: `int main() {'

对于可能出现的问题有什么建议吗?

答案1

以下是问题中的 C 代码 (hello.c) 在 Visual Studio Code 中正确运行的屏幕截图。要在 Code Runner 中运行 hello.c,请右键单击代码并选择运行代码

在此处输入图片描述
(点击图片放大)

请注意,在左侧窗格中,我在 Visual Studio Code 中安装了 C/C++ 扩展和 Code Runner 扩展。请注意,在菜单栏下方的选项卡中,C 代码已保存在名为 hello.c 的文件中。请注意,在底部窗格中,Code Runner 通过运行以下命令执行了此 C 代码:

cd "/home/karel/Desktop/" && gcc tempCodeRunnerFile.c -o tempCodeRunnerFile && "/home/karel/Desktop/"tempCodeRunnerFile

相关内容