A program contains the following function.
void display(int arg1, double arg2, char arg3)
{
cout << "Here are the values: "
<< arg1 << " " << arg2 << " " << arg3 << endl;
}
Write a statement that calls the function and passes the following variables to it:
int age;
double income;
char initial;
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.