enum in c, seven important points you should know
An enum in C is a user-defined data type and it consists set of named constant integer. Using the enum keyword, we can declare an enumeration type with using the enumeration tag (optional) and a list of named integer. Basically, we used the enum to increase the code readability and with enum easy to debug […]
enum in c, seven important points you should know Read More »