diff --git a/docs/c-language/enum-type.md b/docs/c-language/enum-type.md index dd4aeb1658e..d06496cdd95 100644 --- a/docs/c-language/enum-type.md +++ b/docs/c-language/enum-type.md @@ -15,7 +15,8 @@ ms.workload: ["cplusplus"] **ANSI 3.5.2.2** The integer type chosen to represent the values of an enumeration type A variable declared as `enum` is an `int`. +Enumeration (or enum) is a user defined data type in C. It is mainly used to assign names to integral constants; the names make a program easy to read and maintain. ## See Also -[Structures, Unions, Enumerations, and Bit Fields](../c-language/structures-unions-enumerations-and-bit-fields.md) \ No newline at end of file +[Structures, Unions, Enumerations, and Bit Fields](../c-language/structures-unions-enumerations-and-bit-fields.md)