Home » C Programming » Variables » Question
  1. Which is valid C expression?
    1. int my_variable = 99,99;
    2. int my_variable = 9999;
    3. int my variable = 9999;
    4. int $my_variable = 9999;
Correct Option: B

Space, comma and $ cannot be used in a variable name.



Your comments will be displayed only after manual approval.