Skip to main content

Posts

Showing posts with the label cpp

Features of C Language

  Features of C Language C is the widely used language. It provides many  features  that are given below. Simple Machine Independent or Portable Mid-level programming language structured programming language Rich Library Memory Management Fast Speed Pointers Recursion Extensible 1) Simple C is a simple language in the sense that it provides a  structured approach  (to break the problem into parts),  the rich set of library functions ,  data types , etc. 2) Machine Independent or Portable Unlike assembly language, c programs  can be executed on different machines  with some machine specific changes. Therefore, C is a machine independent language. 3) Mid-level programming language Although, C is  intended to do low-level programming . It is used to develop system applications such as kernel, driver, etc. It  also supports the features of a high-level language . That is why it is known as mid-level languag...