Guest User

Untitled

a guest
Oct 16th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. #ifndef TRUE
  4. #   define TRUE 1
  5. #endif
  6. #ifndef FALSE
  7. #   define FALSE 0
  8. #endif
  9.  
  10. typedef int         PONIES;
  11. typedef void        DANIEL;
  12. typedef int     bool;
  13.  
  14. struct UNICORNS {
  15.     char *color;
  16.     int size;
  17.     bool likesponies;
  18. }
  19.  
  20. PONIES eat(DANEIL)
  21. {
  22.     UNICORNS.color = "purple";
  23.     UNICORNS.size = 5;
  24.     UNICORNS.likesponies = TRUE;
  25. }
  26.  
  27. PONIES main(void)
  28. {
  29.     eat();
  30. }
Add Comment
Please, Sign In to add comment