kjlander / CppPrimer

Solutions to C++ Primer 5th Edition

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Solutions to C++ Primer 5th Edition


Languages

Language:C++ 96.2%Language:CMake 3.8%