C
Programming and Technical
What are enumerations?
Read Solution (Total 1)
-
- enum is a user defined data type which is mainly used to create the integer type data type.
example
enum tagname{variable1variable2,variable3.................variablen};
the value of variable1 is bydefault 0
variable2=1
variable3=2....................and upto n - 10 years agoHelpfull: Yes(1) No(0)
C Other Question