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 someFunction(int& first, float second, char third);

a. someFunction(1, 2.0, ch);
b. someFunction(myInt, myFloat, ch);
c. someFunction(myInt, 2.0, 'c');
d. someFunction(myInt, myFloat, '1');

a. someFunction(1, 2.0, ch);

Computer Science & Information Technology

You might also like to view...

The _______ pseudo-class configures the styles that will apply for a hyperlink that has not been visited by the user

a. :unvisited b. :link c. :visited d. :new

Computer Science & Information Technology

Which of the following is a block cipher?

a. Blowfish b. AES c. IDEA d. All the above

Computer Science & Information Technology