Consider the following two function prototypes:
void Func1(int&, int&); int Func2(double, double);
-I need help completing the following C++ user-defined function Func3
-which prompts and gets an integer for the variable Option from user.
-Func1 should be called when the value of Option is 1,
- Func2 should be called when the value Option is 2, the message "Wrong Selection. " should be displayed if the user had entered anything other than 1 or 2.
int Func3 ()
{
int Option;
int A = 2;
int B = 3;
double C = 2.5;
double D = 3.5;
cout << " Enter your select: ";
cin >> Option;
}