helloworld.c
资源名称:Webserver.rar [点击查看]
上传用户:yayahi0755
上传日期:2022-05-14
资源大小:876k
文件大小:0k
源码类别:
浏览器
开发平台:
Unix_Linux
- #include <stdio.h>
- int main(void)
- {
- printf("Content-type: text/htmlnn");
- printf("<html>n");
- printf("<head><title>CGI Output</title></head>n");
- printf("<body>n");
- printf("<h1>Hello,world.</h1>n");
- printf("<body>n");
- printf("</html>n");
- exit(0);
- }