Introduction to C

C is a mid-level structured oriented programming language, used in general-purpose programming,developed by Dennis Ritchie at AT&T Bell Labs , the USA, between 1969 and 1973.

C program to print Hello!

            #include < stdio.h >
            int main()
                {
                    printf("Hello, World!\n");
                }
        
        

OUTPUT

Hello, World!

Tokens

In C programs, each word and punctuation is referred to as a token. C Tokens are the smallest building block or smallest unit of a C program.
The compiler breaks a program into the smallest possible units and proceeds to the various stages of the compilation, which is called token.

Identifiers

Identifiers are names given to different entities such as constants, variables, structures, functions, etc.

Rules for naming Identifiers