Contact: aviboots(AT)netvision.net.il
40,836 questions
53,240 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 */