Advertisement
Guest User

Untitled

a guest
Feb 13th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. =========INPUT============
  2. int main(int argc, const char *argv[])
  3. {
  4.  
  5. LOG("%d\n");
  6. This is just a test
  7. LOG("%s Hello There \n",
  8. buffer);
  9. to remove the Debug log
  10. LOG("%s this includes whitespaces and tab after\
  11. \n",semicolon);
  12. perfectly
  13. return 0;
  14. }
  15.  
  16. ======OUTPUT=============
  17. int main(int argc, const char *argv[])
  18. {
  19.  
  20. This is just a test
  21. to remove the Debug log
  22. perfectly
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement