hello.c

来自「The art and science of c_source code!」· C语言 代码 · 共 17 行

C
17
字号
/* * File: hello.c * ------------- * This program prints the message "Hello, world." * on the screen.  The program is taken from the * classic C reference text "The C Programming * Language" by Brian Kernighan and Dennis Ritchie. */#include <stdio.h>#include "genlib.h"main(){    printf("Hello, world.\n");}

⌨️ 快捷键说明

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