参考:VS code中编写和运行C语言_vscode 运行c语言-CSDN博客
1、下载、安装并验证Mingw
1.1、下载Mingw
参考:https://softdown.365xiazai.com/20241107/2651/down/2022down/5/24/mingw_v10.0.exe
可以自行百度搜索资料下载。
1.2、解压Mingw,并且配置环境变量
1.3、验证Mingw
2、在Visual Studio code安装C/C++的Code Runner和C/C++ Extension pack
3、新建项目,新建C文件,
编码,
#include<stdio.h>
int main()
{
printf("hello world2222");
return 0;
}
运行C文件
点击右上角的的"Run Code",结果如下: