You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 26, 2023. It is now read-only.
//"Function Overloading" is the idea that in C++ we can create 2 different functions with the same name but different arguments, return types, or parameters
void printNumber(int x){
cout << "I am printing an integer which is " << x << endl;
}
void printNumber(float x){
cout << "Now I am printing a float which is " << x << endl;