/ **************************************************************************** * * Enumeration example. Program will return the number of days in a month * I.E. returns 28 for Feburary. * ****************************************************************************/ main() { /* * Define a list of aliases */ enum days {Jan=31, Feb=28, Mar=31, Apr=30, May=31, Jun=30, Jul=31, Aug=31, Sep=30, Oct=31, Nov=30, Dec=31}; /* A A | | | | | ------- list of aliases. -------------- Enumeration tag. */ enum days month; /* define 'month' variable of type 'months' */ printf("%d\n", month=Feb); /* Assign integer value via an alias * This will return 28 */ }
file: /Techref/language/ccpp/cref/EXAMPLES/enum2.c, 0KB, , updated: 1997/4/21 08:52, local time: 2024/11/8 19:29,
3.16.203.55:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://ecomorder.com/techref/language/ccpp/cref/EXAMPLES/enum2.c"> language ccpp cref EXAMPLES enum2</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to ecomorder.com! |
.