Solved

Given the Function Prototype: Double TestAlpha(int U,char V,double T); Which

Question 33

Multiple Choice

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) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions