Information Hiding

  • C++ Source Code: C++ Programming Concepts

Example of a program with a little information?hiding contained in it. [crayon-6748a95a2c503563511786/]

Graphical Calculator and Dairy

  • C++ Source Code: C++ Programming Concepts

This is a Graphical calculator and graphical dairy which uses files to store the diary information. [code='c']/******************************************************* * MYCPLUS Sample Code - https://www.mycplus.com * *…

Change IP configuration using C++

  • C++ Source Code: C++ Programming Concepts
Change IP configuration using C++

This sample illustrates how to programmatically change an IP address for a specific network adapter on your machine. This program also demonstrates how to retrieve…

C++ Client and Server, Overlapped Server and Thread Server

  • C++ Source Code: C++ Programming Concepts

This C++ Program demonstrate the use of pipes to pass a continuous stream of data between processes. It has four parts i.e. Simple named pipe…

C++ Database project Demo

  • C++ Source Code: C++ Programming Concepts

This a database management project  that demonstrate the database operations. The operations include add, edit and delete the records. User can also search the records.

C++ Program to simulate Cache Coherence mechanism Graphically

  • C++ Source Code: C++ Programming Concepts

This C++ program simulates the cache coherence problem graphically. In computer architecture, cache coherence is the uniformity of shared resource data that ends up stored…

Using Templates to implement Stack

  • C++ Source Code: C++ Programming Concepts

In this post we are going to write C++ program to implement stack data structure using Templates in C++. Stack is an abstract data type…

Queue Implementation with Inheritance and Polymorphism

  • C++ Source Code: C++ Programming Concepts

Following is the source code of simple queue implementation with the help of Inheritance and Polymorphism i.e. Late Binding.

Source Code: The Standard C++ Library: Generic containers

  • C++ Source Code: C++ Programming Concepts

Container classes are the solution to a specific kind of code reuse problem. They are building blocks used to create object-oriented programs. They make the…

Runtime type identification (RTTI)

  • C++ Source Code: C++ Programming Concepts

Runtime type identification (RTTI) lets you find the dynamic type of an object when you have only a pointer or a reference to the base…