0 votes
in C Plus Plus by
What are enumerations in C Language?

1 Answer

0 votes
by

They are a list of named integer-valued constants. Example:enum color { black , orange=4,

yellow, green, blue, violet };This declaration defines the symbols ?black?, ?orange?, ?yellow?,

etc. to have the values ?1,? ?4,? ?5,? … etc. The difference between an enumeration and a macro

is that the enum actually declares a type, and therefore can be type checked.

Related questions

0 votes
asked Mar 17, 2020 in C Plus Plus by rajeshsharma
0 votes
asked Mar 10, 2020 in C Plus Plus by rahuljain1
...