Podcast
Questions and Answers
What are tokens in C++?
What are tokens in C++?
Tokens are the smallest building block or smallest unit of a C++ program.
Why can't keywords be used as variable names in C++?
Why can't keywords be used as variable names in C++?
Keywords are pre-defined or reserved words in a programming language and cannot be redefined for other purposes.
How many keywords are supported in the C language?
How many keywords are supported in the C language?
C language supports 32 keywords.
How many additional keywords are present in C++ compared to C?
How many additional keywords are present in C++ compared to C?
Signup and view all the answers
Can keywords be redefined in C++?
Can keywords be redefined in C++?
Signup and view all the answers
What are identifiers used for in C++?
What are identifiers used for in C++?
Signup and view all the answers
Can identifiers in C++ start with a digit?
Can identifiers in C++ start with a digit?
Signup and view all the answers
What are constants in C++?
What are constants in C++?
Signup and view all the answers
What are the types of constants in C++?
What are the types of constants in C++?
Signup and view all the answers
How are strings declared in C++?
How are strings declared in C++?
Signup and view all the answers