C Language is a Programming Language. C programming language was developed by Dennis Ritchie. C Language is Under stand Machine Language. It has since spread to many other operating systems, and is now one of the most widely used programming languages.
#include <stdio.h>
main()
{
float a, b, c, sum, avg;
printf("
\
nEnter value of three numbers: ");
scanf("%f %f %f", &a, &b, &c);
sum = a+b+c;
avg = sum/3;
printf("\nSum = %.2f", sum);
printf("\nAverage = %.2f", avg);
getch();
}