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