Home » C Programming » Variables » Question
  1. Which of the following is not a valid C variable name?
    1. int $main;
    2. int var;
    3. float price;
    4. int num;
    5. None of these
Correct Option: A

Since only underscore and no other special character is allowed in a variable name, it results in an error.



Your comments will be displayed only after manual approval.