|
发表于 2008-5-2 05:45:08
|
显示全部楼层
Post by activenow;1844613
初学!!!希望高手多多指教。我在 ubuntu 下用gcc 编写如下
#include <stdio.h>
int main()
{
printf("hello world");
return 0;}
结果:
root@roothg-desktop:/home/roothg# gcc -o hi hello.c
hello.c:2:18: error: stdio.h: No such file or directory
hello.c: In function ‘main’:
hello.c:6: warning: incompatible implicit declaration of built-in function ‘printf’
由于是初学不知道出了什么错、、请大家帮帮忙、、、先谢了
没有装开发包吧?
apt-get install build-essential |
|