Characteristics of C Language
We briefly list some of C's characteristics that define the language and also have lead to its popularity as a programming language. Naturally we will be studying many of these aspects throughout the course.
1. Small size
2. Extensive use of function calls
3. Loose typing -- unlike PASCAL
4. Structured language
5. Low level (Bit-Wise) programming readily available
6. Pointer implementation - extensive use of pointers for memory, array, structures and functions.
7. C has now become a widely used professional language for various reasons.
8. It has high-level constructs.
9. It can handle low-level activities.
10. It produces efficient programs.
11. It can be compiled on a variety of computers.
12. Its main drawback is that it has poor error detection, which can make it off putting to the beginner. However diligence in this matter can pay off handsomely since having learned the rules of C we can break them. Not many languages allow this. This if done properly and carefully leads to the power of C programming.