Variables
- Which of the following is not a valid C variable name?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Since only underscore and no other special character is allowed in a variable name, it results in an error.
- Variable name resolution (number of significant characters for the uniqueness of variable) depends on ___________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
It depends on the standard to which compiler and linkers are adhering.
- All keywords in C are in ____________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
LowerCase letters
- Why do variable names beginning with the underscore is not encouraged?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
To avoid conflicts since library routines use such names
- Which of the following is not a valid variable name declaration?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
Variable name cannot start with a digit.