Sorry! Posting Assignment is allowed only for commercial accounts.
#include <stdio.h>enum numbers{ zero, one, two, three , four=3,five,six,seven=0,eight};void main(){ printf("%d,%d,%d,%d,%d,%d,%d,%d,%d",zero,one,two,three,four,five,six,seven,eight);}