Home » C Programming » Variables » Question
  1. Which of the following is true for variable names in C?
    1. Variable can be of any length
    2. Variable names cannot start with a digit
    3. It is not an error to declare a variable to be one of the keywords(like goto, static)
    4. They can contain alphanumeric characters as well as special characters
    5. None of these
Correct Option: B

According to the syntax for C variable name, it cannot start with a digit.



Your comments will be displayed only after manual approval.