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=
Although it may vary from compiler to compiler, enum typically takes the same size as an int. To be sure, though, you can always use sizeof( data_10_type );
enum
int
sizeof( data_10_type );