Home » Archives for November 15th, 2009
Functions in C++
Functions in C++:
A function is a set of instructions that are designed to perform a specific task. A function is a complete and independent program. It is executed by the main function or any other function of the program to perform its task.
The functions are written to write the code of a large program by dividing it into smaller units. When a program...