History of C Programming

C is computer programming language developed in 1972 by Dennis M. Ritchie. C programming language developed in  Bell Laboratories to develop the UNIX operating system. C is a  high-level language which can be easily read and written by any one. C is a case-sensitive programming language. Thus, “HELLO” and “Hello” two different identifiers in C.

Basics of C Programming

Tokens In a C language, token is either a keyword, a symbol ,an identifier, a constant or a string literal. A C program consists of various tokens for example, the following C program consists of five tokens −

The individual tokens are −

Comments Comments are the text in C program and they … Read more