1 year ago
#385514
Kevin Oped
I am trying to run a simple "Hello World" in C++ using VSCode, but it shows : "The term g++ is not recognizedas the name of cmdlet, and so on.."
Here is my code:
#include <iostream>
using namespace std;
int main () {
cout << "Hello World";
return 0;
}
And when I try to run it, it shows this:
g++ : The term 'g++' is not recognized as the name of a cmdlet, function, script file, or operable program.
Can anyone tell me what I did wrong? Or is there a way to fix this?
c++
g++
0 Answers
Your Answer