import3.c
来自「linux的程序设计第二版 是学习LINUX下程序设计的好教程哦」· C语言 代码 · 共 20 行
C
20 行
/* This is an important file for managing the project. It implements the canoncial "Hello World" program. Filename: $RCSfile$*/#include <stdlib.h>#include <stdio.h>static char *RCSinfo = "$Id$";int main(){ printf("Hello World\n"); printf("This is an extra line added later\n"); printf("This file is under RCS control. Its ID is \n%s\n", RCSinfo); exit (EXIT_SUCCESS);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?