Guest User

Untitled

a guest
Sep 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. enum bool { false, true };
  2.  
  3. typedef enum bool boolean;
  4.  
  5. int main()
  6. {
  7. boolean isOn = false;
  8. printf("%dn", isOn);
  9. if(!isOn)
  10. printf("IS FALSE");
  11. return 0;
  12. }
Add Comment
Please, Sign In to add comment