fork download
  1. #include <stdio.h>
  2.  
  3. typedef enum
  4. {
  5. R_DIRECTION_LEFT = 1,
  6. R_DIRECTION_RIGHT = 2,
  7. R_DIRECTION_TOP = 4,
  8. R_DIRECTION_BOTTOM = 8
  9. } R_Direction;
  10.  
  11. int main ( )
  12. {
  13. printf("Size: %zu\n", sizeof(R_Direction));
  14. return 0;
  15. }
Success #stdin #stdout 0s 5560KB
stdin
Standard input is empty
stdout
Size: 4