BASIC C PROGRAMMES

 

C Programming Language

The C Language is developed by Dennis Ritchie for creating system applications that directly interact with the hardware devices such as drivers, kernels, etc.

C programming is considered as the base for other programming languages, that is why it is known as mother language.

It can be defined by the following ways:

Ø  Mother language

Ø  System programming language

Ø  Procedure-oriented programming language

Ø  Structured programming language

Ø  Mid-level programming language

C Program

#include <stdio.h>  

#include<conio.h>

void main() 

{  

printf("Hello C Programming\n");  

getch();  

}  

Comments

Popular Posts