In the file Average.c you will write a C program that prompts
the
user to enter three integers, read an input into a variables num1, num2,
and
num3
of type int. Use one scanf statement to do this.
The program will calculate the average of the input numbers. Since, we are
working with the integers your average will be the integer part of the
real average value. You don't need to use decimal point arithmetics in
this program. The output of the program will include: your full name,
the values of the input numbers and the calculated average with
the appropriate message. Print your name, input numbers and the result on
separate lines (the output will consist of three lines).
For example, if the input was 1, 2 and 4. The output should be (PAY
ATTENTION: instead of Yana Kortsarts you have to print YOUR name):
My name is Yana Kortsarts
Input numbers are: 1, 2, and 4
The integer part of the average of the input numbers is 2