|
运行一个很简单的程序,结果出现了下面的错误,能否帮忙看看
#hello.c
int main(int argc,char **argv)
{
printf("Hello Linuxn");
}
[root@BillingServer home]# gcc -o hello hello.c
hello.c: In function `main':
hello.c:3: stray '\241' in program
hello.c:3: stray '\241' in program
hello.c:3: stray '\241' in program
hello.c:3: stray '\241' in program
hello.c:4:2: warning: no newline at end of file |
|