/myCode

Example Code Samples to demonstrate Posix APIs, CPP concepts, Sorting & Linux Device Drivers

Primary LanguageC++GNU General Public License v2.0GPL-2.0

Author: Prithwiraj Shome

This is my small contribution of example codes which may help the new learners.

Version: 1.0

If g++ is not installed in your Linux distribution, execute the following command to install g++

  1. sudo apt update
  2. sudo apt install g++

PosixExample: Contains example CPP code to demostrate Thread Creation, Mqueue Implementation between two threads, Semaphore implementation between two threads. In future, will add more examples.

  1. cd PosixExample
  2. make all

cppExample: Contains example CPP code to demostrate Object Orientation Concepts: Polymorphism, Inheritance etc. In future, will add more examples.

  1. cd cppExample
  2. make all