⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 import2.c

📁 《Beginning Linux Programming》书的配置实例源代码。
💻 C
字号:
/*   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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -