Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
#include <stdio.h> typedef enum { a = 97, b, c, d } Exampel; int main(void) { Exampel ex = c; printf("%c", ex); } /* run: c */