Enumerated data types are simply data types that contains a set of named values called enumerators.
The required statement is <em>enum {SMALL, MEDIUM, LARGE} ssize;</em>
The syntax of the anonymous enumerated type is:
<em>enum {List of enumerators} name of variable;</em>
From the question, the enumerators are SMALL, MEDIUM, LARGE.
The name of the variable could be ssize
Hence, the anonymous enumerated type statement is:
<em>enum {SMALL, MEDIUM, LARGE} ssize;</em>
<em />
Read more about enumerated data types at:
brainly.com/question/15518342