Advertisement
Guest User

works

a guest
Dec 18th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.69 KB | None | 0 0
  1. /*************************************************************************************************************************************************************
  2.  
  3.     this is a C program
  4.  
  5.     this is a test comment
  6.  
  7.     this comment spans a few lines
  8.  
  9.     see if it works with the comment deletion program
  10.  
  11. *************************************************************************************************************************************************************/
  12. #include<stdio.h>
  13.  
  14. main() {
  15.  
  16.     printf("hello \"world/*here's a comment within a string*/\n");
  17.  
  18.     printf("//here's another comment inside a string.\n");
  19.  
  20.     //this a one line comment
  21.     }
  22.  
  23. /*here's another comment at the end of the program*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement