You have already completed these exercises!
Do you want to take them again?
You completed the C Enums Exercises from W3Schools.com
Share on:
What will the following code output?enum Level { LOW, MEDIUM, HIGH};int main() { enum Level myVar = MEDIUM; printf("%d", myVar); return 0;}
enum Level { LOW, MEDIUM, HIGH};int main() { enum Level myVar = MEDIUM; printf("%d", myVar); return 0;}