Science, asked by uttamds5378, 1 year ago

Why function overloading is undesirable c++?

Answers

Answered by MacTavish343
0
FUNCTIONAL OVERLOADING IN C++

It is the feature of polymorphism in C++ where we can use more than one function with the same name but with different signatures.

For eg -

void student (float a) ;

void student ( int b );

void student ( float a, int b );

hope it helps
Similar questions