-
What does enumeration in c-language mean?
Enumerated values/variables are used when a variable cannot be expressed in a native way, i.e. the variable is not intrinsically int, float, double, etc.
For example, the day of the week really is...
-
Advantages of enumeration in c?
There are basically two uses
1. making new data (which does not exist in c language )
for example : Boolean
typedef enum BooleanT
{
False;
True;
}boolean;
2.
-
What ORGANIC compound has C-C-C-O-C-C-C-C?
Please rephrase your question with more detail.Making a LOT of assumptions, the answer MIGHT be propoxybutane.
-
What is this C-C-C-O-C-C?
this is nothing actually is... CH3-CH2-CH2-O-CH2-CH3 ethyl methyl ether....
-
Disadvantages of enumeration in c?
The big disadvantage I've found is that you might mistake it for a user-defined type. It's not; you still have to use int for your variable type and compilers will not do anything to help restricted...