Crazy C language Notes (struct/shared/enumeration)

Source: Internet
Author: User

(iii) enumeration type

1.enum Weekday{sum,mon,tue,wed,thu,fri,sat};

Declares an enum-type enum weekday, which can be used to define a variable. Such as:

Enum weekday workday,week_end;

Workday and week_end are defined as enumeration variables, and their values can only be sum to one of the SAT . Such as:

Workday = Mon;

Week_end = sum;

Equivalent to

enum {Sum,mon,tue,wed,thu,fri,sat} workday,week_end;

They are one of them.

2. Of course you can use

typedef enum {SUM,MON,TUE,WED,THU,FRI,SAT} weekday;

That is equivalent to enum WEEKDAY{SUM,MON,TUE,WED,THU,FRI,SAT};

Crazy C language Notes (struct/shared/enumeration)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.