#include #include enum test { Test = 6.66666, }; typedef enum { omg, } wtf; wtf bbq; void main(int argc, char *argv[]) { print("%g\n", Test); /* enum constant */ print("%p\n", bbq); /* will work */ // print("%p\n", &test); /* will fail */ }