hello.c
来自「基于ARM9嵌入式开发板LINUX环境下的程序代码」· C语言 代码 · 共 54 行
C
54 行
/*****************************************Copyright (c)**************************************************** Guangzhou Zhiyuan Electronic Co.,LTD.** graduate school** http://www.zyinside.com****------------------------------------- File Info ------------------------------------------------------** File name: hello.c** Last modified Date: 2005-12-29** Last Version: 1.0** Descriptions: HelloWorld program.**------------------------------------------------------------------------------------------------------** Created by: Chenxibing** Created date: 2005-12-29** Version: 1.0** Descriptions: Preliminary version.****------------------------------------------------------------------------------------------------------** Modified by:** Modified date:** Version:** Descriptions:***********************************************************************************************************/#include <stdio.h>/********************************************************************************************************** Function name: main()** Descriptions : printf "HelloWorld" on srceen.** Input : NONE** Output : NONE** Created by : Chenxibing** Created Date : 2005-12-29**-----------------------------------------------------------------------------------------------------** Modified by :** Modified Date: **-----------------------------------------------------------------------------------------------------********************************************************************************************************/int main(int argc, char **argv){ int i; for (i=0; i<5; i++) { printf("HelloWorld!\n"); } return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?