-
Which of the following is true for variable names in C?
-
- Variable can be of any length
- Variable names cannot start with a digit
- It is not an error to declare a variable to be one of the keywords(like goto, static)
- They can contain alphanumeric characters as well as special characters
- None of these
Correct Option: B
According to the syntax for C variable name, it cannot start with a digit.