Logo 
Search:

C++ Programming FAQ

Submit Interview FAQ
Home » Interview FAQ » C++ ProgrammingRSS Feeds

Which function call does invoke the following function prototype? float sub1(int a, float b)

  Shared By: Matilda Hughes    Date: Feb 13    Category: C++ Programming    Views: 1083

Answer:

Options

a) X=sub1(5.0,6.5);
b) X=sub1(5,6.5);
c) X=sub1(5,6);
d) Both b and c


Answer : b) X=sub1(5,6.5);

Share: 
 



Your Comment
  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].


Tagged: