Commit 0f242aa2 authored by elijah vasquez's avatar elijah vasquez 🦍

hi

parent 377c9e72
#include <stdio.h>
enum days {mon, tue, wed, thu, fri, sat, sun};
/*enum today {};*/
int main(){
enum days day;
day = wed;
printf("%d", day);
enum days today = thu;
int values[7] = {10, 15, 5, 60, 20, 40, 30};
printf("%d", today);
return 0;
}
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment