Contact: aviboots(AT)netvision.net.il
41,255 questions
53,764 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 */