在ubuntu下编译最简单的c语言程序
时间:2011-03-01 来源:candycaicai
#include <stdio.h>
int main(void)
{
printf("hello!\n");
printf("hello world from process id is %d\n",getpid());
return 0;
}
但是在终端用gcc 编译,去说没有头文件,之后才发现是因为没有装c的标准库的原因。
安装 g++, sudo apt-get install g++
Ubuntu就安裝g++后,stdio.h就在/usr/include/下了,可以自己查询。
然后这时候,我们再次执行,结果如下L
candycai@candycai-ubuntu:~$ gcc hello.c -o hello
candycai@candycai-ubuntu:~$ ./hello
hello!
hello world from process id is 10087
(我也是菜鸟,只是记录一些我的鸟爪,以便后续学习用)
相关阅读 更多 +