Last updated Unknown
Status:
Tags:
Links: C Enum
C Enum
- User defined data types, set names to ints
Examples
Declaration and usage
1
2
3
4
5
6
|
enum suit {Hearts, Spades, Clubs, Diamonds}; // default values are assigned starting from 0
// i.e., Hearts = 0, Spades = 1, Clubs = 2, Diamonds = 3;
enum emphasis {Bold = 1, Italic = 2, Underline = 4}; // can define integer values of the names
Usage: enum sui card = Spades; // variable of type enum suit
|
Backlinks
References:
Created:: 2021-09-22 14:40