Skip to content

Latest commit

 

History

History
198 lines (176 loc) · 10.9 KB

README.md

File metadata and controls

198 lines (176 loc) · 10.9 KB

C++ Primer 5th Edition Solutions

Slowly working through the text. Will update as I complete each section. See below for compiling instructions.

How to compile (on Linux)

Firstly install CMake, then, open up a terminal in the directory you wish to store the repository and clone it.

$ git clone https://github.com/adobrich/CppPrimer.git 

Now cd into the repo, create the build directory and build the solutions.

$ cd CppPrimer
$ mkdir build
$ cd build
$ cmake ..
$ make

Executable files are in the newly created 'Chapter' folders in the build directory. Enjoy.

Refer to C++ Primer Errata if you notice any inconsistencies with your version of the text book.