visual studiocode怎么写c+
时间: 2024-01-12 09:03:55 浏览: 104
vc++ 写c语言
1. 首先打开 Visual Studio Code,然后点击左侧的扩展按钮(Ctrl+Shift+X),搜索并安装 C/C++ 扩展。
2. 如果你的电脑还没有安装 C/C++ 编译器,可以选择安装 MinGW 或者 Cygwin,在安装过程中需要选择 C/C++ 编译器。如果已经安装了编译器,则可以跳过此步骤。
3. 在 Visual Studio Code 中创建一个新的文件,然后保存为 .c 文件格式。例如,可以命名为 hello.c。
4. 在新的 .c 文件中输入以下代码:
```
#include <stdio.h>
int main() {
printf("Hello, world!");
return 0;
}
```
5. 然后按下 F5 键,选择 C/C++: gcc build active file 选项,即可编译并运行代码。或者可以使用 Ctrl+Shift+B 快捷键编译代码。
6. 在终端窗口中可以看到输出结果:Hello, world!
阅读全文