Solved

Given the Following Function Declaration and Local Variable Declarations, Which

Question 5

Multiple Choice

Given the following function declaration and local variable declarations, which of the following is not a correct function call?
Int myInt;
Float myFloat;
Char ch;
Void someFunctionint& first, float second, char third) ;


A) someFunction1, 2.0, ch) ;
B) someFunctionmyInt, myFloat, ch) ;
C) someFunctionmyInt, 2.0, 'c') ;
D) someFunctionmyInt, myFloat, '1') ;

Correct Answer:

verifed

Verified

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

Related Questions