functions overloadingthis a capability in which a


Functions Overloading

This a capability in which a C++ program can have several functions performing similar tasks on different data types. When an overloaded function is called, C++ selects the proper function by examining the
number, types and order of the arguments in the call.

Overloaded functions are distinguished by their signatures. A signature is a combination of function's name, and its parameter types.

The compiler encodes each function identifier with the number and types of its parameters to enable type safe linkage. Type safe linkage ensures that the proper overloaded function is called and the arguments conform to the parameters.

Creating overloaded functions with identical parameter list but different return types is a syntax error.

Example

Write a C++ program that uses overloaded functions to find squares of both an integer and double numeric values.

#include 
using namespace std;
int square(int);

double square(double);
int square  (int num)
{

return num*num;

 

}

double square  (double num)
{

return num*num;

 

}

int main  ()
{

int number1;

 

double number2;

 

cout<<"Enter an integer number"<

cin>>number1;

cout<<"Enter a floating point number"<>number2;

cout<<"The square of the integer number is: "
     <

cout<<"The square of the floating number is: "
     <

return  0;

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: functions overloadingthis a capability in which a
Reference No:- TGS0158516

Expected delivery within 24 Hours