import2.c
来自「Linux程序设计(原书第2版)源码」· C语言 代码 · 共 15 行
C
15 行
/* 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"); printf("This is an extra line added later\n"); exit (EXIT_SUCCESS);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?