Skip to main content

history of c

                History of c programming language.


1. First language is ALGOL come in 1960.
2. After algol the bcpl language is come in 1967. BCPL is invented by Martin Richard.
   Martin Richards (born 21 July 1940) is a British computer scientist known 
     for his development of the BCPL programming language in 1966.


  • Developer of BCPL is Martin Richard in 1966.
  • Full form of BCPL is basic combined programming language.

3. In 1970 B language is developed in  AT & T’s bell laboraties of USA.B language is
       invented by ken Thompson.
                                                           



4. To improve b language then come the c language 1972 in AT & T’s Bell laboraties of usa. C is develop by Dennis Ritchie.
                                             

After the ken Thompson the Dennis Ritchie is developer of C language
               and improve the unix operating system in 1972.


Comments

Popular posts from this blog

types of constant

Now start c language Character set :- It is a group of words, number and expression that is used to develop and run a program. Syntax :-like any other language “c” also has its own vocabulary and grammer they are called syntax. Identifier :- it refers to the name of variable, function and array it is complete user define names. Constant :- A constant has fixed value that cannot change during the execution of program. Variable   :- A variable is an entity that may be change during the  execution of program. Keyward :- keyword are the word that carries special   meaning. All the keyword has fixed meaning it can’t be change. There are 32 keywords in c.                                         Constant in c Types of constant  Primary constant i.              ...

Local and Global variable

LOCAL AND GLOBAL VARIABLES LOCAL VARIABLE :- Variable that are declared inside the function is called local variable.These variable are also referred to as automatic variables. Local variable are referred only by statement that are declared inside the block in which the variable are declared. simple program for local variable #include<stdio.h> #include<conio.h> void main( ) { int x,y;              /* this is local variable*/ clrscr( );      printf("enter two number \n"); scanf("%d %d",&x,&y0; getch( );  } GLOBAL VARIABLE :- The variable declared outside the function are called global variables.They will hold their value throughout the program's execution. you create global variables by declaring them outside of all function.  simple program of global variable #include<stdio.h> #include<conio.h> int a ;           ...