Advertisement
Guest User

Comment strip test case

a guest
Nov 5th, 2012
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.34 KB | None | 0 0
  1. // Single line comment
  2. // Still single line comment /*
  3. /* Same line */ int main() { /* Another one */ int i; // i++
  4. /* Tricky // comment */
  5.  
  6. /* Multi layer
  7. /* jkdshfksd
  8. /* inside
  9. */
  10.  
  11. /* Multi line comment
  12. // Inside multi line comment
  13. */
  14. char *a =
  15. "sfksjd/*hfjkhk \\\
  16. /* inside string \
  17. // still inside \n\
  18. ";
  19. // */
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement