Ask Question
24 October, 22:36

Which of the following is not a valid enumeration statement? (a) enum person { me, you, them }; (b) enum person { me = 1, you = 2, them = 3 }; (c) enum person { me = 0, you = 0, them = 0 }; (d) enum person { me, you, me };

+5
Answers (1)
  1. 24 October, 23:20
    0
    (d) enum person { me, you, me };

    Explanation:

    enum person { me, you, me }; is invalid enumeration statement.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which of the following is not a valid enumeration statement? (a) enum person { me, you, them }; (b) enum person { me = 1, you = 2, them = 3 ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers