Runtime type identification (RTTI)
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 type. Runtime type identification (RTTI) (13.3 KiB, 4,169...
Read MorePosted by M. Saqib | Sep 9, 2008 | 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 type. Runtime type identification (RTTI) (13.3 KiB, 4,169...
Read MorePosted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |
The Standard C++ Library: Templates The Standard C++ Library: Templates (17.5 KiB, 5,824...
Read MorePosted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |
You can do much more with the general I/O problem than just take standard I/O and turn it into a class. The iostreams classes are usually the first part of the C++ library that new C++ programmers learn to use. This chapter...
Read MorePosted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |
Algorithms are at the core of computing. To be able to write an algorithm once and for all to work with any type of sequence makes your programs both simpler and safer. The ability to customize algorithms at runtime has...
Read MorePosted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |
Standard C++ not only incorporates all the Standard C libraries (with small additions and changes to support type safety), it also adds libraries of its own. These libraries are far more powerful than those in Standard C; the...
Read MorePosted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |
This is C++ Flexible Vector and Matrix (Vectors and Matrix with Arbitrary Bounds). The algorithm has been written by Alex Vinokur. Programming Language : C++. Any and all comments would be appreciated. This C++ code is tested...
Read MorePosted by M. Saqib | Sep 9, 2008 | C++ Source Code: C++ Programming Concepts |
Bubble Sort is the most simple form of sorting algorithm that works by repeatedly stepping through the list of items (array) and swapping the adjacent elements if they are in incorrect order. This algorithm has no such real life uses due to it’s poor performance and is used primarily as an educational tool.
Read MorePosted by M. Saqib | Sep 9, 2008 | C Programming Source Code |
This is the complete source code of the most favorite flash game ‘Web Breaker’. The source code is written completely in C/C++ programming language. The game runs in DOS graphics mode. You can use either Turbo C++ compiler or Dev C++ compiler to compile and run this code.
Read More