Commit 377c9e72 authored by elijah vasquez's avatar elijah vasquez 🦍

commit

parent 4d2b408a
{
"C_Cpp.errorSquiggles": "Disabled"
}
\ No newline at end of file
File added
File added
#include <stdio.h>
enum days {mon, tue, wed, thu, fri, sat, sun};
/*enum today {};*/
int main(){
enum days day;
day = wed;
printf("%d", day);
return 0;
}
\ No newline at end of file
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