Saved Bookmarks
| 1. |
What is meant by a token? Name the token available in C++. |
|
Answer» C++ program statements are constructed by many different small elelments such as commands, variables, constants and many more symbols called as operators and punctuators. Individual elements are collectively called as Lexical units or Lexical elements or Tokens. C++ has the following tokens: 1. Keywords 2. Identifiers 3. Literals 4. Operators 5. Punctuators |
|