TOKENS Tokens are the basic buildings blocks in language which are constructed together to write a program.Tokens is each and every smallest individual units in a program are known as tokens. C++ tokens are six type . Keywords : struct ,break , else long , switch , case ,enum , register , typedef. Identifiers :main, total. Constants : 3.14 . Strings : "hello", "string". Operators : +, - ,/ ,*. Special symbols : (),{}. Example #include<iostream.h> #include<Conio.h> int main() { ...
c++ programming , opp concepts ,object oriented programming language