Monday, January 11, 2010

What is a function?

A self-contained program that perform an actions.


Two Types of Function
1. void function - a function that performs an action.
2. value returning function - a function that performs an action and returns a value.

Wednesday, January 6, 2010

What is C++ language?

C++ language is a multi-paradigm programming language. It supports procedural programming (c-style), object oriented programming (OOP), and generic programming (template-style programming).