Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. enum day {monday,tuesday,wednwsday,thrusday,friday,saturday,sunday};
  5. enum day week_st, week_end;
  6. week_st = monday;
  7. week_end = friday;
  8. if(week_st == tuesday)
  9. {
  10. printf("%s",week_end);
  11. }
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement