Given the function prototype: double testAlpha(int u, char v, double t);
which of the following statements is legal? \n
cout << testAlpha(5, 'A', 2.);
cout << testAlpha( int 5, char 'A', double 2);
cout << testAlpha('5.0', 'A', "2.0");
cout << testAlpha(5.0, "65", 2.0);