This is a graded lab worth 5 pts. You may work in pairs to complete this BY THE END OF THE CLASS.
Overloading
Start with an empty main
Write a function named printit that accepts an integer and
prints the message "My number is " followed by the
value of the parameter and then a new line. Change the value of the parameter
to be their number * 100
Add the following to the main
int x=20;
printit(x);
cout << "X is: " << x << endl;
Write a function named printit that accepts 3 characters (by value) and
prints the last character followed by the second character,
followed by the first character followed by the newline
Add the following to the main
printit('c', 'a', 't');
Write a function named printit that accepts two doubles and
returns the
product of the two parameters