Advertisement
Guest User

banaan

a guest
Jan 28th, 2015
174
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.  
  3. #define leovar int
  4. #define thomonard float
  5. #define bram char*
  6. #define leogame main
  7. #define HARDOPZEGGEN printf
  8.  
  9. leovar leogame(leovar argc, bram* argv)
  10. {
  11. leovar a = 5;
  12. thomonard b = 1.6f;
  13. bram c = "%d + %f = %f \n";
  14. HARDOPZEGGEN(c, a, b, a+b);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement