import1.c

来自「Linux程序设计(原书第2版)源码」· C语言 代码 · 共 14 行

C
14
字号
/*   This is an important file for managing the project.   It implements the canoncial "Hello World" program.*/#include <stdlib.h>#include <stdio.h>int main(){    printf("Hello World\n");    exit (EXIT_SUCCESS);} 

⌨️ 快捷键说明

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