Features of C
Hello friends hitesh is here with a new concept related to C programming Language, Features of C.
Some Important
features of C programming is given below;
- Low Level Language Support
- Program Portability
- Powerful and Feature Rich
- Bit Manipulation
- High Level Features
- Modular Programming
- Efficient Use of Pointers
- Simple
- Machine Independent or Portable
- Mid-level programming language
- structured programming language
- Rich Library
- Memory Management
- Fast Speed
- Pointers
- Recursion
- Extensible
Simple
C is a simple language in the sense that it provides structured approach (to break the problem into parts), rich set of library functions, data types etc.
Machine Independent
Unlike assembly language, c programs can be executed in many machines with little bit or no change. But it is not platform-independent.
Mid-level prorgramming language
C is also used to do low level programming. It is used to develop system applications such as kernel, driver etc. It also supports the feature of high level language. That is why it is known as mid-level language.
Structured prorgramming language
C is a structured programming language in the sense that we can break the program into parts using functions. So, it is easy to understand and modify.
Rich Library
C provides a lot of inbuilt functions that makes the development fast.
Memory Management
It supports the feature of dynamic memory allocation. In C language, we can free the allocated memory at any time by calling the free() function.
Speed
C execution time is very fast
No comments :
Post a Comment