#include<stdio.h>#include<stdlib.h>#include<string.h>enum Color {
RED = 4,
BLUE,
YELLOW
};
typedefenum Color Color;
intmain(int argc, char* argv[]){
Color c = YELLOW;
printf("%d\n", c);
return0;
}
This website uses cookies to ensure you get the best experience on our website. Learn more