首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

初学者linux最最基本的HELLO函数异常

2012-09-16 
菜鸟求助linux最最基本的HELLO函数错误代码如下#include apue.hint main(void){printf( hello world fr

菜鸟求助linux最最基本的HELLO函数错误
代码如下
#include "apue.h"

int main(void)
{
printf( "hello world from process ID %d\n", getpid() );
exit(0);
}
为什么执行./hello.h时候提示我如下的错误:
./hello.c: line 3: syntax error near unexpected token `('
./hello.c: line 3: `int main(void)'
为什么啊

[解决办法]
apue.h 这个是作者写的, 你要去下他的这个头文件

热点排行