桂林创新大厦网站,广告设计图片及解析,怎么样宣传自己的网站,arial 网站开发是用犀利用vscode学习c语言。记录vscode配置c语言编译环境。1.安装vscode(版本1.27)2.安装c/c扩展。配置环境变量#xff0c;以WIN10为例 #xff0c;此电脑-属性-高级系统设置-环境变量-系统变量-path-添加一条D:\Program Files\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw3…用vscode学习c语言。记录vscode配置c语言编译环境。1.安装vscode(版本1.27)2.安装c/c扩展。配置环境变量以WIN10为例 此电脑-属性-高级系统设置-环境变量-系统变量-path-添加一条D:\Program Files\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin(你安装编译工具路径)配置前配置后-ps:如果开着vscode配置环境变量配置完要关掉vscode重开一次。4.配置文件launch.jsontask.json。新建文件hello.cpp按F5弹出选择环境配置launch.json点击进去configurations:里内容如下{name: (gdb) Launch,type: cppdbg,request: launch,program: enter program name, for example ${workspaceFolder}/a.exe,args: [],stopAtEntry: false,cwd: ${workspaceFolder},environment: [],externalConsole: true,MIMode: gdb,miDebuggerPath: /path/to/gdb,setupCommands: [{description: Enable pretty-printing for gdb,text: -enable-pretty-printing,ignoreFailures: true}]}修改成如下{name: (gdb) Launch,type: cppdbg,request: launch,program: ${workspaceFolder}/a.exe,//这里删除前面那里的enter program name, for exampleargs: [],stopAtEntry: false,cwd: ${workspaceFolder},environment: [],externalConsole: true,MIMode: gdb,miDebuggerPath: D:\\Program Files\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin\\gdb.exe,//修改为你安装mingw32的路径setupCommands: [{description: Enable pretty-printing for gdb,text: -enable-pretty-printing,ignoreFailures: true}],preLaunchTask: build hello,//task.json里面的名字}回到hello.cpp按F5弹出报错框选配置任务。点击然后选Others出现task.json,如下version: 2.0.0,tasks: [{label: echo,type: shell,command: echo Hello}]修改如下version: 2.0.0,tasks: [{label: build hello,type: shell,command: g,args: [-g, hello.cpp,],group:{kind: build,isDefault: true}}]注意如果是win32程序(窗口界面)args内加上-mwindows。回到hello.cpp文件按F5。成功运行编译。5.还有就是发现中文控制台显示乱码只要点击右下角utf-8点使用编码保存选GBK然后F5运行----------------------------------------------------------------------------------------------------------------------------------------