Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 241 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 241 Bytes

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