CHARACTERISTICS OF C LANGUAGE
CHARACTERISTICS OF C LANGUAGE C is a powerful and flexible general purpose language that has won widespread acceptance over the years. Several features make C a very attractive and popular programming language for coding solutions. The following are the characteristics of C: 1. Simplicity : C has the richest collection of in-built functions, keywords and data types. It also resembles general English language. Moreover, it follows a structured approach so it is easy to learn. 2. Clarity : The keywords and library functions available in C resembles common English words thus it helps to improve the clarity of the program. 3. Portability : C is highly portable language. By the term 'portable, we mean computer independent. The programs written on one computer can run on another computer having different operating system with little or no modification. 4. Case Sensitive : C is a case sensitive language. The identifiers written in uppercase letters are different from ide...