Advertisement
dllbridge

Untitled

Dec 29th, 2024 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.45 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. enum Day {Monday = 1, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday};
  6.  
  7.  
  8. Day yesterday,
  9.         today,
  10.      tomorrow;
  11.  
  12.  
  13. //////////////////////////////////////////////////////
  14. int main()                                          //
  15. {
  16.    
  17.     today = Tuesday;
  18.  
  19.     printf("yesterday = %d\n", yesterday);    
  20.     printf("today     = %d\n", today    );
  21.     printf("tomorrow  = %d\n", tomorrow );    
  22. }
  23.  
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement