In previous blog I covered some of the basics about C so now continuing that blog in this blog i m going to talk some other aspects of C language. For previous blog you can click on this link
Features of C language
There are some key features of C programming that shows the ability & Power of C language
Simplicity & Efficiency : The simple syntax and structured approach make the C language easy to learn.
Fast Speed : C is one of the fastest programming language becuase C is a static programming language, which is faster than dynamic language like java and python. C is also a compiler based which is the reason for faster code compltion and execution.
Portable : C provides the feature that you write code once run it anywhere on any computer. It shows the machine - independent nature of the C language.
Memory Management : C provides lower level memory management using pointers and functions like realloc(),free(),etc.
Structured Language : C provides the features of structured programming that allows you to code into different parts using functions which can be stored as libraries for reusability.
Pointers : C comes with pointers we can directly access or interact with the memory. We the memory. We can initialize a pointer as an array, variable,etc.
That's all about C language features.