Skip to content
/ myCode Public template

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

License

Notifications You must be signed in to change notification settings

rexprith/myCode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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