Basic Programming Concept in C

 What is C language? 

=> In C is a mother language of computer programming. It is developed at AT & T's Bell Laboratories of USA in 1972. It is design and developed by Dennis Ritchie. For example, we are Understand that the syntax of C  language is

coding: / * This code is compile in turboc compiler. /*

#include<stdio.h>

#include<conio.h>

void main() 

{

       clrscr() ;

       printf("Hello World In C") ;

        getch() ;

}

ouput: Hello World In C

Comments