The C programming language allows programmers to create a wide variety of programs and is used for programming many operating system and embedded system applications. C is one of the most widely used languages due to its general purpose platform.
While there are an innumerable number of programs that one can write with C, some of the introductory programs involve mathematical formulas .
and analysis of data sets.
Here is an example of a "Hello world" program written in C: /* hello.c */ #include <stdio.h> int main(void) { printf("Hello World!\n"); // return 0; }
Another program that one can write in C is a program that analyzes data of test scores from a classroom. One can use this program to input all test score data and then the program computes the average score of the students.
More Reference Links: http://www.cs.utexas.edu/users/djimenez/utsa/cs1713-3/c/ http://www.cis.temple.edu/~giorgio/cis71/code/