linux系统中用gcc编译并且运行c程序

日期:2017-12-15 10:07:47 人气:1

linux系统中用gcc编译并且运行c程序

【希望对你有帮助】 建议你看看编程的一些基础知识 - 经典hello word 程序 #include int mian() { printf("hello world!\n"); return 0; } - 编译 -进入终端 -进入源文件所在的目录 $ gcc hello.c -o hello - 运行 $ ./hello
    A+
热门评论