helloworld.c
Upload User: yayahi0755
Upload Date: 2022-05-14
Package Size: 876k
Code Size: 0k
Category:

Browser Client

Development Platform:

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. }