Tokens in C

In C language the smallest unit of a program is called Token. Tokens are created using the C character set. These tokens are delimited from each other by white spaces just like words in English language are delimited by white spaces. The Syntax Rule of the C language dictates how to create tokens in C … Read more

Features of C language

C language has a rich set of features. These include: 1. There are a small, fixed number of keywords, including a full set of control flow primitives. This means there is not much vocabulary to learn. 2. C is a powerful, flexible language that provides fast program execution and imposes few constraints on the programmer. … Read more