All about C language 2.0

All about C language 2.0

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

  1. Simplicity & Efficiency : The simple syntax and structured approach make the C language easy to learn.

  2. 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.

  3. 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.

  4. Memory Management : C provides lower level memory management using pointers and functions like realloc(),free(),etc.

  5. 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.

  6. 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.