Ask Question
1 May, 02:06

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 };

+1
Answers (1)
  1. 1 May, 04:46
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers