// Pantea Aria // Enum // Imagine you are working in a coffee shop ordering system. // We can make a type for coffee sizes with limited values, size_type // (instead of using characters like 'S', 'M', 'L'). // // enum size_type {SMALL, MEDIUM, LARGE}; // 0 for SMALL // 1 for MEDIUM // 2 for LARGE // Write a program that declares a variable of type size_type // and assigns it the value LARGE. Then, print the value. #include int main(void) { }