Language Ccpp Cref Examples ENUM2.C

/ ****************************************************************************
 *
 * 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日 09:52, local time: 2025年9月15日 19:05,
40.74.122.252:LOG IN

©2025 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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/Techref/language/ccpp/cref/EXAMPLES/enum2.c"> language ccpp cref EXAMPLES enum2</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /