Advertisement
JoshDreamland

Untitled

Feb 28th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  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.  
  12.  
  13.  
  14. Output:
  15.  
  16. ============================================================================
  17. =: Test parser :============================================================
  18. ============================================================================
  19.  
  20. const int a;
  21. const int b;
  22. const int c;
  23. double d;
  24. double e;
  25. double f;
  26. long double i;
  27. namespace justdefineit {
  28. unsigned long g;
  29. unsigned long int h;
  30. unsigned long long k;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement