C++ COURSE

C++ Polymorphism

Learn C++ programming with EDUHUB Code Hub.

C++ Polymorphism

Polymorphism means many forms.

Function Overloading



void print(int x){

cout << x;

}


void print(string x){

cout << x;

}