User-submitted CPP Projects

29
1567 reads

February 22, 2013

Reference overloading


Function overloading or method overloading is a feature found in various programming languages that allows creating several methods with the same name which differ from each other in the type of funct

25
1544 reads

February 22, 2013

Overloaded functions-II


Function overloading or method overloading is a feature found in various programming languages that allows creating several methods with the same name which differ from each other in the type of funct

28
1583 reads

February 22, 2013

Ambiguous Overloaded functions


Function overloading or method overloading is a feature found in various programming languages that allows creating several methods with the same name which differ from each other in the type of funct

33
1664 reads

February 22, 2013

Overloaded functions


Function overloading or method overloading is a feature found in various programming languages that allows creating several methods with the same name which differ from each other in the type of funct

25
939 reads
adminguy's picture

Submitted by

adminguy
Tags:

31
1729 reads

February 21, 2013

Member Function Templates


When we create a class template for a class, all the member functions were defined as inline which was not necessary.

278
2431 reads

February 21, 2013

Stacks using Nested Class Templates


Templates can be defined within classes or class templates (member templates). Member templates that are classes are referred to as nested class templates.

232
4082 reads

February 20, 2013

Array Class Template Definition


A template can be considered as a kind of macro. When an object of a specific type is defined for actual use, the template definition for that class is substituted with the required data type.

37
1873 reads

February 20, 2013

Character variable


This example demonstrates how to handle character datatypes.

33
1886 reads

February 20, 2013

Error Floating values


Here in this c++ example we perform basic operations to floating values and demonstrate floating point errors.