Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- name
- hello.c
- usage
- hello.exe
- description
- hello world test cgi
- */
- #include <stdio.h>
- main()
- {
- printf("content-type: text/html\n\n");
- printf("<html><head></head><body>hello world c cgi</body></html>");
- return(0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement