📄 hello.c
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -