C++ Source Code
Posted on
September 9th, 2008 0 Comments
The basic concept of multiple inheritance (MI) sounds simple enough: you create a new type by inheriting from more than one base class. The syntax is exactly what you’d expect, and as long as the inheritance diagrams are simple, MI can be simple as well. Or maybe not! MI can introduce a number of ambiguities and strange situations, which are covered in...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
With Inheritance and Polymorphism (Late Binding)
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* purpose of illustration....
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
This is a special console based utility which will calculate the Message Digest, Base 64 Encoding and Decoding, Checks the Message Digest and give output through file or through screen you can use this class to make the dll. Help is included in the main.cpp creating the .exe include all the file in VC++ 6.0 , compile Main.cpp and build the .exe file, exclude...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
SWAT GAME
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* purpose of illustration. *
* ...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
Error recovery is a fundamental concern for every program you write, and it’s especially important in C++, in which one of the goals is to create program components for others to use. To create a robust system, each component must be robust.The goals for exception handling in C++ are to simplify the creation of large, reliable programs using less code than...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
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 internals of a program much easier to construct.
The Standard C++ Library: Generic containers (50.3 KiB, 1,830 hits)
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
this program is tour of knight on 64 square of chess board
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* purpose...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
Example of a program with a little information?hiding contained in it.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code is made available as a service to our *
* visitors and is provided strictly for the *
* ...
Read More |
Make a Comment