Saturday, 21 November 2015

C PROGRAMMING ---- ENUMERATIONS

#include <stdio.h>
#include <conio.h>
#include <stdio.h>
enum week{ sunday, monday, tuesday, wednesday, thursday, friday, saturday};
void main()
{
    clrscr();
    printf("%d day",wednesday);
    getch();
   }

No comments:

Post a Comment