hello_cgi.c.htm

来自「嵌入式http源代码的文档资料」· HTM 代码 · 共 14 行

HTM
14
字号
/* hello_cgi.c - minimal CGI program
**
** Compile with:  gcc -O hello_cgi.c -s -o hello_cgi.cgi
*/

#include <stdio.h>

int
main( int argc, char** argv )
    {
    fputs( "Content-type: text/plain\n\nHello.\n", stdout );
    exit( 0 );
    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?