/CPP

C++ Programs

Primary LanguageC++

CPP

C++ Programs

How to compile c++ Code

$ g++ nameOfFile.cpp
$ ./a.out

How To Compile C++17 if you get the error "decomposition declaration are a C++17 extension"

$ g++ -std=c++17 nameOfFile.cpp
$ ./a.out