Computer Science, asked by sheershas001, 8 months ago

Give a function prototype of a function accepting float value and integer value and returns an integer value

Answers

Answered by ArghyaPratim
0

Answer:

vid calculate( int a, float b)

{

return a+b;

}

Always return gives an integer type data no matter the input

Similar questions