|
发表于 2004-9-18 09:41:08
|
显示全部楼层
最初由 alen 发表
#include<stdio.h>
int main()
{
printf("hello the world!\n");
}
----------------------------------------------------------
gcc -o hello hello.c
这段代码有问题吧。int mian()但是没有返回吧。
#include<stdio.h>
int main()
{
printf("hello the world!\n");
return 0;
} |
|