Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 477 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 477 Bytes

CppND-practice

Contains all the practice exercises from the Udacity's ND213 : C++ Nanodegree

Contents:
  • Fundamentals
  • OOP Basics
  • Memory Management
  • Concurrency

All the code files are compatible with C++17


To run any program:

$ g++ -std=c++17 main.cpp
$ ./a.out

To run any multi-threaded program:

$ g++ -std=c++17 main.cpp -pthread
$ ./a.out