Advertisement
JoshDreamland

Untitled

Mar 10th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //====== INPUT =============================================
  2.  
  3. const int a = 10 + 20 + 30, b, c = 5;
  4. double d, e, f = 10;
  5. namespace justdefineit {
  6.   long unsigned g;
  7.   long unsigned int h;
  8.   long unsigned long k;
  9. }
  10. long double i;
  11. class koalacub {
  12.   int leavesEaten;
  13.   int chutesEaten;
  14. };
  15. class koala: koalacub {
  16.   koalacub *children[10]; // A koala can have at most ten children because of reasons.
  17. };
  18.  
  19. int *z_simple[10];
  20. unsigned long const int   (  *  zz_better )  [ 10+5+7+9 / 3 ] ;
  21. int* (*(*zzz_confusing)[10][12])[15];
  22. long double (*(&*zzzz_whatthefuck[10])[2][4])(char, short, int, long, double, long double);
  23. long double (*(&*(***zzzzz_okaycutitout[1^2^4^8])(int illegalnest, char (*but)(int oh, int well))[10])[2][4])(char, short, int, long, double, long double);
  24.  
  25. int function(int);
  26.  
  27.  
  28. //====== OUTPUT ============================================
  29.  
  30.  
  31. Parse finished in 514 microseconds.
  32. const int a;
  33. const int b;
  34. const int c;
  35. double d;
  36. double e;
  37. double f;
  38. int function(int);
  39. long double i;
  40. namespace justdefineit {
  41.   unsigned long g;
  42.   unsigned long int h;
  43.   unsigned long long k;
  44. }
  45. class koala: private koalacub {
  46.   koalacub *children[10];
  47. }
  48. class koalacub {
  49.   int chutesEaten;
  50.   int leavesEaten;
  51. }
  52. int *z_simple[10];
  53. const unsigned long int (*zz_better)[25];
  54. int *(*(*zzz_confusing)[10][12])[15];
  55. long double (*(&*zzzz_whatthefuck[10])[2][4])(char, short, int, long, double, long double);
  56. long double (*(&*(***zzzzz_okaycutitout[15])(int illegalnest, char (*but)(int oh, int well))[10])[2][4])(char, short, int, long, double, long double);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement