C++ Programming

C++ Program to demonstrate Function Name Overloading

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…

Indian Hill C Coding Styles and Standards

Indian Hill C Coding Styles and Standards

This document is a result of a committee formed at Indian Hill to establish a common set of coding standards and recommendations for the Indian…

C Programming Questions

What is C language? The programming language C was originally developed by Dennis Ritchie of Bell Laboratories and was designed to run on a PDP-11…

Advanced C++ Inheritance Techniques for Effective Object-Oriented Programming

In Object Oriented Programming Inheritance is the process by which objects of one class acquire the properties and functionality of objects of another class. In…

Inheritance in C++

The principle of inheritance is available with several modern programming languages and is handled slightly differently with each. C++ allows you to inherit all or…

C++ Memory Management

Everyone knows that memory management is a difficult and dangerous chore in C++. This series of three articles will show you that the conventional wisdom…

GNU coding styles and standards

Reference standards Don't in any circumstances refer to Unix source code for or during your work on GNU! (Or to any other proprietary programs.) If…

Exception Handling in C# Applications

In C#, an exception is a runtime error or unexpected behavior that occurs during the execution of a program. Exceptions can be caused by various…