ADVERTISEMENT

C++ Source Code: C++ Programming Concepts

Rock, Paper, Scissors Game in C++ [C++ Game]

Rock, Paper, Scissors Game in C++ [C++ Game]

This is a simple C++ program to demonstrate rock, paper, scissors game. In this game, players have to choose one of the three options to…

C++ Wave File Writer from Text File

This C++ program is capable of turning a text file describing the notes of a piece of music into an audio file (.wav). The program…

Vigenere Encryption and Decryption in C++

The Vigenere cipher is a method of encrypting or decrypting alphabetic text by using a series of interwoven Caesar ciphers (Caesar Shift), based on the…

C++ Program to solve the Quadratic Equation

This program will solve quadratic equations. It accepts coefficients of a quadratic equation from the user i.e. a, b and c and displays the roots.…

C++ “Hello World” Program

Typically, the best way to learn programming is by writing code. The first program beginners write is “Hello, World!” which is often used to illustrate…

Add time using structures in C++

This is a C++ implementation of adding time using structures. A structure is a convenient tool for handling a group of logically related data items. Structure…

Common Text Transformation Library

Common Text Transformation Library, CTTL for short, is a set of C++ classes and functions to understand and modify text data. The library implementation is…

C++ program to demonstrate Inheritance

This is a simple C++ Program to demonstrate Inheritance. Simpler methods in the classes have been changed to inline code to shorten the file considerably.…