helloworld.c
来自「s3c2410的很多驱动实验」· C语言 代码 · 共 17 行
C
17 行
#include <stdio.h>/* * helloworld application code, the start code of Linux application * compile : * $/usr/local/arm/2.95.3/bin/arm-linux-gcc -o helloworld helloworld.c * $cp helloworld /tftpboot/examples * run in target: * #mount 192.168.1.180:/tftpboot/ /mnt/nfs * #cd /mnt/nfs/examples * #./helloworld */int main(int argc, char **argv){ printf("Hello, World!\n");}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?