Skip to main content

C Programming

 C is a powerful general-purpose programming langu age. It can be used to develop software like operatin g systems, databases, compilers, and so on.More..

History:
C programming language was developed in 1972 by Dennis Ritchie at bell laboratories of AT&T (America n Telephone & Telegraph), located in the U.S.A. 

Dennis Ritchie

Example:

#include <stdio.h>
int main() {
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0;
}