Topics
Number Systems
Program Analysis
Introduction to C+ +
- Introduction to C++
- Character Sets
- Standard I/O Strems in C++
- Type Modifiers
- C++ Data Types
- Variables in C++
- Constants
- Compiler Tokens
- Operators in C++
- Comments in C++
- Scope and Visibility
- Control Statements
- Functions in C++
- Default Arguments
- Techniques used to pass Variables into C++ Functions
- Function Overloading
- Inline Functions
- Recursion
- Pointers in C++
- Arrays in C++
- References
- Type Conversion in Expressions
Visual Basic
- Introduction to Visual Basic
- One language Three Editions
- Study Of Integrated Development Environment (IDE)
- Visual Basic Programming
- Few Common Methods
Introduction to Networking and Internet
- Introduction to Networking and Internet
- Networking Terms and Concepts
- Types of Networks
- Network Security
- Network Configurations
- Network Applications
- Introduction
- Keywords
- Identifiers
- Literals
Compiler Tokens
When a C++ compiler analyses a program, it breaks the program into tokens. A token is a distinct unit that is recognizable by the compiler. There are five categories of tokens:
- keywords
- literals
- identifiers
- operators
- white space includes: blanks, horizontal and vertical tabs, new line and form feed characters and comments
Keywords & Literals
There are in total 48 keywords defined in C++.Keywords should be considered as reserved. Keywords are not allowed to be used as variable names. Literal · may be, character constant, integer constant, floating point _ constant, string constant.
Identifiers
Rules for valid identifiers:
- Sequence of letters, digits, or underscores (_).
- No limit to length, though some compilers consider only the first 32 characters.
- No spaces or special characters; only letters, digits, and underscores allowed.
- Must begin with a letter or underscore, not a digit.
- Case-sensitive; all characters are significant.
- Keywords cannot be used as identifiers.
If you would like to contribute notes or other learning material, please submit them using the button below.