#include <stdio.h>

    enum weak {mon=12,tues,wed,thurs,fri=7,sat,sun};
    int main (){
        printf ("The value of enum weak :%d\t%d\t%d\t%d\t%d\t%d",mon, tues, wed, thurs, fri, sat, sun);
    
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: