Home » C Programming » Variables » Question
  1. Which is valid C expression?
    1. int $new_n = 20;
    2. int new n = 20;
    3. int n = 20;
    4. int new_n = 20;
    5. None of these
Correct Option: B

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



Your comments will be displayed only after manual approval.