Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 383 Bytes

File metadata and controls

10 lines (8 loc) · 383 Bytes

cPlusPlus

practice problems from 700 pg c++ pdf

To Compile code on command line: g++ -std=c++14 <filename.cpp> <filename2.cpp> <filename.h>

  • g++ is compiler
  • -std=c++14 means compile with version 14 of c++, can also use version 11 for my code
  • <filename.cpp>, don't actually type in the "<>" characters
  • <filename.h> is a header file

To view output on command line: ./a.out