InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is true for variable names in C ? |
|
Answer» Explanation: To name a variable in C LANGUAGE, the contenders NEED to follow some specific RULES. A variable name can have uppercase and lowercase letters, DIGITS and underscore only. The first letter of a variable should be either a letter or an underscore. There is no rule on length of the variable. |
|