helloworld.c

来自「该源码是创维特ARM7 JX44B0X板的例子程序」· C语言 代码 · 共 23 行

C
23
字号
#include <stdio.h>/* * helloworld application code, the start code of Linux application * compile :  *          $arm-elf-gcc -Wl,-elf2flt -o helloworld helloworld.c *          $cp helloworld /tftpboot/examples * run in target: *          #cd /var *          #ftp 192.168.1.180 *          ftp>bin *          ftp>cd /tftpboot/examples *          ftp>get helloworld *          ftp>by *          #./helloworld */int main(int argc, char **argv){	printf("Hello, World!\n");	return 0;}

⌨️ 快捷键说明

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