Write function headers for the functions described below: (i) The function check has two parameters. The first parameter should be an integer number and the second parameter a floating point number. The function returns no value
Answers
Answered by
0
So Sorry
I didn't know that answer
Answered by
0
Answer:
The required function is:
void test(int num1, float num2)
Explanation:
- The declared function has the name test.
- The function will takes the first number as integer and passes to the variable num1.
- The function takes the second variable as floating number as required in the given problem statement and passed to the variable num2.
- It will returns nothing because the function type is void.
#SPJ2
Similar questions