📄 p.c
字号:
#include <stdio.h>
void
main(void)
{
/* Create a temporary buffer to hold the standard in data block or multipart message */
char buff[BUFSIZ];
/* Generate the appropriate server directive - see How-To 14.2 */
printf("Content-type: text/plain\n\n");
/* Display the environment variables, etc. using the standard cgi app distributed with
NCSA, Apache, and other servers. */
system("test-cgi");
/* Read the standard input and simply display as text to the standard out. */
while(gets(buff))
puts(buff);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -