Define and implement the following functions using a C project structure: int sum(int x, int y) - returns the computed sum of two numbers x and y int diff(int x, int y) - returns the computed difference of two numbers x and y. Make sure that the larger number is deducted by the smaller number to avoid a negative answer int prod(int x, int y) - returns the computed product of two numbers x and y float quot(int x, int y) - returns the computed quotient of two numbers x and y. Make sure that the larger number is always the numerator and divided by the smaller number to avoid division by zero error. int mod(int x, int y) - returns the computed remainder of two numbers x and y using the modulo operator % Create a main function in another file to test your functions.
Define and implement the following functions using a C project structure:
int sum(int x, int y)
- returns the computed sum of two numbers x and y
int diff(int x, int y)
- returns the computed difference of two numbers x and y.
Make sure that the larger number is deducted
by the smaller number to avoid a negative answer
int prod(int x, int y)
- returns the computed product of two numbers x and y
float quot(int x, int y)
- returns the computed quotient of two numbers x and y.
Make sure that the larger number is always the numerator
and divided by the smaller number to avoid division
by zero error.
int mod(int x, int y)
- returns the computed remainder of two numbers x and y using
the modulo operator %
Create a main function in another file to test your functions.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 6 images