I\'m trying to work with C and Assembly (intelx8086) lenguage.
I\'m also using one class a friend of mine gave me that has a
typedef enum data_10 {a=
An enum does not really take any memory at all; it's understood by the compiler and the right numbers get used during compilation. It's an int, whose size is dependent on your system.