我第一次在vs代码中使用c++/c扩展,在单击microsoft安装c/c++扩展后,我无法使用此扩展。
**// Simple C++ program to display "Hello World"
// Header file for input output functions
#include<iostream>
using namespace std;
// main function -
// where the execution of program begins
int main()
{
// prints hello world
cout<<"Hello World";
return 0;
}**
发布于 2020-06-02 06:49:58
您可以尝试手动下载扩展程序。
code --install-extension <path to your downloaded .vsix file>
中键入https://stackoverflow.com/questions/58901712
复制相似问题