Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - Why does this C language enumeration only have an "enum" beginning and no enumeration name? What does this do?
Why does this C language enumeration only have an "enum" beginning and no enumeration name? What does this do?
Enum defined in this way means that only one set of constants is defined!

~~~~~~~~

Then these constant symbols can be used directly in the program, such as assignment, comparison and judgment, return value and so on. . .