. 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 procedure and passes the following variables to it: int age; double income; char initial;