Various tokens or basic building blocks defined in c++ are explained here.
Various tokens or basic building blocks defined in c++ are explained here.
Concept of keywords in a language and keywords as per c++11 standard are explained here.
Identifiers can be names given by the user/programmer or names other than keywords in the library files.
Some rules related to C++ identifiers are as follows: Can be arbitrarily long alpha numeric (letters and numbers) sequence. The first character must be a letter. As an exception _ (underscore) is considered as a letter. Upper and lower case letters considered different All characters in the name are considered significant. C++ Keywords can not […]
Using some escape sequences in c++ for common tasks.
int main() { ...
int a ...
Sub ...