4412 helloworld

一、编写helloworld

#inlcude <stdio.h>
int main()
{
    printf("Hello World!\n");
    return 0;    
}

然后编译

arm-none-linux-gnueabi-gcc helloworld.c -o helloworld -static

猜你喜欢

转载自www.cnblogs.com/ch122633/p/9275679.html