我第一次在 vs 代码中使用 c++/c 扩展名,在点击微软安装 c/c++extension 之后,我无法使用它
**// 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;
}**