#include//Overloading example using namespace std; int multiply(int x, int y);//overload multiply - for ints and for doubles //double multiply(double x, double y); int main() { cout << "3*5 = " << multiply(3,5) << endl; // cout << "3.2*5.7 = " << multiply(3.2,5.7) << endl; } int multiply(int x, int y) { return x*y; } // double multiply(double x, double y) // { // return x*y; // }