Pages

Showing posts with label FUNCTION OVERLOADING. Show all posts
Showing posts with label FUNCTION OVERLOADING. Show all posts

FUNCTION OVERLOADING

Posted by sudheer | Posted in | Posted on 1:30 PM

0



  • Design a C++ program to implement the concept of function overloading.


      C++ program for function overloading. Function overloading means two or more functions can have the same name but either the number of arguments or the data type of arguments has to be different.In this program i am finding volume of a cube, cylinder, rectangle. For this I take three functions with same name (vol) but difference in parameters.

Below is the program....