Given the following function prototype:​
double tryMe(double, double);​
Which of the following statements is valid? Assume that all variables are properly declared.
a cout << tryMe(tryMe(float, float), float);
b cin >> tryMe(x);
c cout << tryMe(tryMe(double, double), double);
d cut << tryMe(2.0, 3.0);