Fundamentals of C | feel_the_coder | C Weekly
Fundamentals of C Programming Token Any individual entity in a c program is called as the token. There are five types of token. 1. Identifier - Identifier are the name given to any variable , function , macro, etc. They are generally used to identify the parts of a program as suggested by its name. for example - the name given to any function ,variable,etc 2.Keywords - Keywords are the special words that convey a special meaning to the compiler.There are total of 32 keywords in C Programming. Some Of the Keywords are listed below : if void int float double long short else for do while auto char ...