python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
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++...
Kevin Oped
Votes: 0
Answers: 0
How can I find what's different between my laptop and my desktop, because I think all relevant compilers and IDE settings are the same?
first timer here!
This might seem like a really dumb question but I have tried a lot of different threads on this website already but without any luck... hope that someone might have an idea, thanks i...
Capplo
Votes: 0
Answers: 0
What is the equivalent of -llib of gcc in g++?
I am compiling a cpp program with math.h using Arm performance library
In their example they compile programs in this way:
gcc code_with_math_routines.c -lamath -lm
But when I try g++ as follow:
g++ ...
user15158413
Votes: 0
Answers: 0