C
文章
1 gcc
gcc 当前会这一种调试就行了。cmake编译构建工具以后再学。msvc编译构建工具为啥不直接使用vscode呢。 1 条件 vscode MinGW-gcc/g++ addon-C/C++ 2 创建helloworld12345678910111213141516#include <iostream>#include <vector>#include <string>using namespace std;int main(){ vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"}; for (const string& word : msg) { cout << word ...







