Powered By Blogger

Thursday 10 January 2013

About C

is a general-purpose programming language ,developed by Dennis Ritchie between 1969 and 1973 at AT&T Bell Labs . C is one of the most widely used programming languages of all time .

C Programming Language is based on Structured Programming Paradigms(Concept). In Structural Concept Execution of a program is done in a sequential manner. (Execution means ,when a program comes in a mode where we actually see its real working).
Structured programs are often composed of simple, hierarchical program flow structures.

Example:

Start                       

---------                                 Code
---------                                 Code

Exit

So Structural Programs Contains a Single Entry and a Single Exit Point, Step-by-Step Execution of a Program is done.
 
Features of C Programming Language
 
Conciseness : It is easy to use
Maintainability : It is easy to modify
Portable : It is easy to Transfer/Share
 
C Language is Compiler Based Language, A Compiler is a tool that translates English-Like words to Machine Language (0s & 1s), because Machine can understands only Binary Language(0s &1s).
 

No comments:

Post a Comment