TASK 1
Write a C program that prompts a user to enter 3 integer numbers. The program then determine the sum and product of the 3 numbers using ADD() and Prod() functions respectively. Finally the program displays the sum and product using the Display() function.
The Display() function also displays whether the sum is 50 or higher and whether the product is less than 300 or not. The function prototypes of these functions are as follow:
int ADD(int, int, int); int Prod(int, int, int);
void Display(int, int);