Get started with C++
Compiling with g++



Check g++ Version

Let's start using compiler



Header file
Last updated
Was this helpful?







Last updated
Was this helpful?
Was this helpful?
g++ --versiong++ -c file_nameg++ file_name -o target_name#include <iostream>
using namespace std;
int main() {
cout << "Hello world!!!" << endl;
return 0;
}