Tuesday, 8 January 2013

C language


'C' is a well known programming language which was developed by Dennis  Ritchie  in 1972 in  AT&T Bell Labs. This programming language was influenced by B , BCPL ,  ALGOL, and some other programming languages.
C language is structured & procedural based programming language .Many programming language which we are using today were influenced from  'C'.examples of such languages are C++ ,D ,Objective C,Go,etc.

This language includes variables,constants,arithmetic ,control  flow,functions and  input & output .
This also includes pointers, structures,several control-flow statements, pre-processors.

EVOLUTION OF C Language



Their are various version of C in market .The latest among them is C11(C standard revision ).It replaces the previous C standard informally known as C99  .
To compile the code written in C language  we have different compilers in market some of them are Borland Turbo C ,Clang, GCC , LCC,Pelles C, PCC ,TCC,etc.

This is the brief intro to the professionals language.



Related Posts:

  • Storage Classes in c A storage class in C defines the scope (visibility) and life-time of a variables and/or a functions .These specifiers precede the type that they modify. There are some storage classes, which are  used in a C Pr… Read More
  • Scope Rules In C A scope in any program is a that region of the program where a defined variable can have its existence and beyond that variable can't be accessed. The three places where variables can be declared in C programming l… Read More
  • C language 'C' is a well known programming language which was developed by Dennis  Ritchie  in 1972 in  AT&T Bell Labs. This programming language was influenced by B , BCPL ,  ALGOL, and some other programming… Read More
  • Decision Making Structure In C Decision making structures allows the programmer to specify one or more conditions to be evaluated or tested by the compiler or , along with a statement or set of statements to be executed if the condition is  … Read More
  • String In C The string in C programming language is a one-dimensional array of characters which is terminated by a null character '\0'. Thus a null-terminated string contains the characters that comprise the string followed by… Read More

0 comments:

Post a Comment