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...

Here is the first line of the copy constructor for PFArrayD. The identifier PFArrayD is the name of the class, but in the header it is used three times with different meaning each time. Give the meaning for each use:

PFArrayD::PFArrayD( const PFArrayD& pfaObject)

Computer Science & Information Technology

Which of the following is the most basic form of Web conferencing?

a. Podcasting b. Network sharing c. Webinar d. Screen sharing

Computer Science & Information Technology