The prototype of a function Show() that returns a float and takes two ints is
Answers
Answered by
0
The required Function Prototype is:-
float Show (int a, int b)
Explanation:
A function prototype consists of <return type> <function name> ( <parameter list> )
return type in this question was given as - float
function name in this question was given as - Show
parameter list in this question was given as - two ints, i.e two integer type variables.
_____________________________________________________
Hope you understood :)
Please marks as brainliest !
Thanks :D
_____________________________________________________
Similar questions