Getting Started with C++
C++ Character Set
Character set is a set of valid characters that a language can recognize.
Letters | A-Z, a-z |
Digits | 0-9 |
Special Characters | Space + - * / ^ \ () [] {} = != <> ‘ “ $ , ; : % ! & ? _ # <= >= @ |
Formatting characters | backspace, horizontal tab, vertical tab, form feed, and carriage return |
Tokens
A token is a group of characters that logically belong together. They are like building blocks of a Programming Language.The programmer can write a program by using tokens.
C++ uses the following types of tokens.
C++ uses the following types of tokens.
- Keywords
- Identifiers
- Literals(Constants)
- Punctuation
- Operators
Compilers/IDEs(Integrated Development Environment)
Turbo C++: Download link Turbo C++
Comments
Post a Comment