Posts

Showing posts with the label Tokens

Fragments Of C,C++ & Java (For Successful Coding)

                                               Basic Terms in C... 1.Tokens The smallest unit of  C program is known as tokens. The basic component of a source code or the Building pieces of a source code through which a program is completed to its achievement. Example- variables, keywords,Identifiers,operators, Special Characters.             I'll be defining each Token to make its importance and use clear. 2.Identifiers. Identifiers as thee name suggest are used to identify a programs function, variables, arrays e.t.c created by you. These are the unique names you give to the member variables, member methods and other components of a C program.               Naming rules for an Identifier:- It should not start with a digit (0-9) First character can be a Upper Cas...