I need to write a function prototype that divides two numbers, another function prototype that finds the greater of two numbers, and another function prototype that prints an ATM menu…
would these be my correct function prototypes???
#include
int divideTwoNumbers(int, int);
int GreatestNumber(int, int);
printf(“\n\tWelcome to our ATM\n”);
main()