C Programming

Introduction
C is a programming language developed at AT & T's Bell Laboratories of USA in 1992. It was designed and written by a man named Dennis Ritchie. In the late seventies C began to replace the more familiar languages of that time like PL/I, ALGOL, etc. No one pushed C.

Hello World Program

//hello world program.//is one line comment.
#include<stdio.h> //preprocessor inclusion
int main(){
     printf("Hello World\n");//print statement
     return o; //return integer value
}//main function close.

No comments:

Post a Comment