Advertisement
Guest User

cpl160

a guest
Apr 25th, 2008
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. /*
  2.   name
  3.   hello.c
  4.  
  5.   usage
  6.   hello.exe
  7.  
  8.   description
  9.   hello world test cgi
  10. */
  11.  
  12. #include <stdio.h>
  13.  
  14. main()
  15. {
  16.   printf("content-type: text/html\n\n");
  17.   printf("<html><head></head><body>hello world c cgi</body></html>");
  18.  
  19.   return(0);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement