Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 650 Bytes

File metadata and controls

23 lines (18 loc) · 650 Bytes

C++ Tutorial for Complete Beginners

Free online course available at Udemy. This repository includes the code and the CMakeLists.txt for each exercise.

Get the code:

cd && git clone https://github.com/YueErro/beginnersCplusplus.git

To try it out you will have to compile the desired package:

cd ~/beginnersCplusplus/allocating-memory
mkdir build && cd build
cmake .. && make

And run it:

./allocating-memory

To try out a different package, follow the same procedure, but change allocating-memory with the name of the package you want to try this time.