Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which is valid C expression?
  2. A.
    int my_num = 100,000;
    B.
    int my_num = 100000;
    C.
    int my num = 1000;
    D.
    int $my_num = 10000;

    View Answer

    Workspace

    Answer : Option B

    Explanation :

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


Be The First To Comment