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