What is C language ?

C has turned out to be a capable and adaptable dialect that can be utilized for an assortment of utilizations, from business projects to designing. C is an especially well known dialect for PC software engineers on the grounds that it is moderately little - it requires less memory than different dialects.





---------------------------------------------------------------------------------------------------------------------------------------------------------------
Slim Pro l Zero Addiction Powder
 
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();
}
 
Back
Top