Ask 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 }; (c) enum person { me = 0, you = 0, them = 0 }; (d) enum person { me, you, me };

+3
Answers (1)
  1. 28 April, 11: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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers