01_comment.c 269 B

123456789101112131415
  1. #include <stdio.h>
  2. int main()
  3. {
  4. printf("Hello\n");
  5. printf("Hello\n"); /* this is a comment */ printf("Hello\n");
  6. printf("Hello\n");
  7. // this is also a comment sayhello();
  8. printf("Hello\n");
  9. return 0;
  10. }
  11. // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :