#include int main(void) { enum colors {blue, red, green, white, black} primarycolor; primarycolor = black; printf("%d\n", primarycolor); return 0; }