📄 hello.c
字号:
/**
* This C program is for a CGI script which generates
* the output for a web page. When displayed by a
* browser, the message "Hello there!" will be shown
* in blue.
*/
#include <stdio.h>
main(int argc, char *argv[]) {
printf("Content-type: text/html%c%c",10,10);
printf("<font color = blue>");
printf("<H1>Hello there!</H1>");
printf("</font>");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -