helloworld.c
上传用户:yayahi0755
上传日期:2022-05-14
资源大小:876k
文件大小:0k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. printf("Content-type: text/htmlnn");
  5.         printf("<html>n");        
  6. printf("<head><title>CGI Output</title></head>n");        
  7. printf("<body>n");        
  8. printf("<h1>Hello,world.</h1>n");
  9.         printf("<body>n");        
  10. printf("</html>n");        
  11. exit(0);
  12. }