#include enum Mes { mes_desconocido, enero, febrero, marzo, abril, mayo, junio, julio, agosto, setiembre, octubre, noviembre, diciembre }; typedef unsigned char byte; typedef unsigned int anno_t; struct Fecha { byte dia; Mes mes; anno_t anno; }; int main() {z Fecha fecha; fecha.dia = 16; fecha.mes = agosto; fecha.anno = 2012; return 0; }