0
when you mean a enum object.
the enum object safes a number for a word so that you write more the code like 
status = animal::status::dead ;
than 
status = 0;
the status can be an enum or an number but you can understand the enum easier.
write it like you call it.
you can calculate with enums when you have to change some.
 
it helps you a bit.




