Given the function prototype:
?
double testAlpha(int u, char v, double t);
?
which of the following statements is legal?
A. cout << testAlpha(5, 'A', 2);
B. cout << testAlpha( int 5, char 'A', int 2);
C. cout << testAlpha('5.0', 'A', '2.0');
D. cout << testAlpha(5.0, "65", 2.0);
Answer: A
Computer Science & Information Technology
You might also like to view...
The ________ option allows you to save your file to SkyDrive and then share it with others
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
A queue can be used to preserve the order of occurrences.
What will be an ideal response?
Computer Science & Information Technology