Ticker

6/recent/ticker-posts

C Language (Features)

FEATURES OF C LANGUAGE


SIMPLE
C is a very simple programming language.
Its programming syntax are very easy to learn and use, therefore it programmers friendly. 


PORTABLE
C language programs are machine independent and this features allows its programs to run (execute) on the different machines. 


STRUCTURED
Any large program can be break down in the small modules by functions and these functions can be combine and reuse again and again hence this features help to solve the complex programs easily.


TOP DOWN APPROACH
C programming language based on Top-down programming approach, so its programs execution flow from top to bottom.


MID LEVEL LANGUAGE
C language inherits characteristics from both types of programming languages (Low level and High level programming languages) therefore it is known as Mid-level programming language.

 
COMPILED LANGUAGE
C language use the Turbo C compiler to translate its programming code to machine code.


CASE SENSITIVE
Case sensitive stands for differences between A and a.
C language is a case sensitive programming language so its all commands should be write in the proper forms.


SUPPORTS POINTER
C language support pointers and by using the pointers, we can directly interact with the memory.
Pointers are also used to dynamically memory allocation (Run time memory allocation) and this feature help to reduce the memory wastage.


BUILT IN LIBRARY FUNCTIONS
C language has a very rich built in library functions (Already existing functions) that save programmer's time.


SUPPORT RECURSION
C language support recursive functions and a recursive function is a particular function that call itself and help to reuse the code.














Post a Comment

0 Comments