Advertisements
Advertisements
Question
Describe the differences between keywords and identifiers?
Distinguish Between
Solution
Keywords:
- Keywords are reserved words that convey specific meaning to the C++ compiler.
- They are essential elements to construct C++ programs.
- Most of the keywords are common to C, C++, and Java.
Identifiers:
- Identifiers are the user-defined names given to different parts of the C++ program.
- They are the fundamental building blocks of a program.
- Every language has specific rules for naming the identifiers.
shaalaa.com
Lexical Units (Tokens)
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which of the following operator is an extraction operator in C++?
The following constant is of which type?
032
The following constant is of which type?
0XCAFE
The following constant is of which type?
04.14
Write the following real constant into the exponent form:
7.214
Write the following real constant into the exponent form:
0.319
Assume n = 10; what will be result of n++ and --n;?
Differentiate “=” and “==”.
Determine which of the following are valid constant? And specify their type.
0.5
Determine which of the following are valid constant? And specify their type.
‘\t’