Find answers to your questions faster and easier with IDNLearn.com. Get the information you need quickly and accurately with our reliable and thorough Q&A platform.

Given this function header:
int mystery(int x, double y, char ch);
This is a valid invocation of the mystery function:
int y;
double x;
char ch;
cout << "The mystery is " << mystery(y, x, ch) << endl;
A. True
B. False