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...
Read MorePosted by M. Saqib | Updated Feb 24, 2021 | C++ Source Code |
This C++ program is capable of turning a text file describing the notes of a piece of music into...
Read MorePosted by M. Saqib | Updated Jan 26, 2021 | C++ Source Code |
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 letters of a keyword. In cryptography, Caesar shift is one of the simplest known encryption techniques. It employs a form of polyalphabetic substitution, which is using multiple substitution alphabets.
Read MorePosted by M. Saqib | Updated Feb 19, 2021 | C++ Source Code |
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. To compile the program name it quadratic_solver.cpp then type g++ -o quadratic_solver quadratic_solver.cpp You may need to use math.h like this: #include if you are using windows C++ programming software. (I tried it without the math.h and got an “undeclared identifier” error)
Read MorePosted by M. Saqib | Updated Jun 26, 2020 | C++ Source Code |
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 the syntax of a programming language. You can take a look at the list of Hello World Programs in 300 Programming Languages to see how “Hello, World!” looks like in different programming languages.
Read MorePosted by M. Saqib | Updated Jun 26, 2020 | C++ Source Code |
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 help to organize complex data is a more meaningful way. It is powerful concept that we may after need to use in our program Design.
Read MorePosted by M. Saqib | Updated Aug 22, 2009 | C++ Source Code |
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 based on STL classes and algorithms. The library provides components for...
Read MorePosted by M. Saqib | Updated Jan 31, 2021 | C++ Source Code |
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. In a practical programming situation, methods that are this short should be programmed inline since the actual code to return a simple value is shorter than the code required to send a message to a non-inline method.
Read MorePosted by M. Saqib | Updated Nov 28, 2017 | C++ Source Code |
This is a simple C++ Program to demonstrate Function Name Overloading. An example of function name overloading within a C++ class many_name is used in this program. The constructor is overloaded as well as one of the methods to...
Read More