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

hi

parent 377c9e72
#include <stdio.h> #include <stdio.h>
enum days {mon, tue, wed, thu, fri, sat, sun}; enum days {mon, tue, wed, thu, fri, sat, sun};
/*enum today {};*/
int main(){ int main(){
enum days day; enum days today = thu;
day = wed; int values[7] = {10, 15, 5, 60, 20, 40, 30};
printf("%d", day); printf("%d", today);
return 0; return 0;
} }
\ No newline at end of file
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