[root@MagicLinux lxk]# gcc -o hello hello.c
hello.c:2: error: stray '\161' in program
hello.c:2: error: stray '\161' in program
hello.c:2: error: stray '\161' in program
hello.c:2: error: stray '\161' in program
hello.c: In function `main':
hello.c:3: error: stray '\161' in program
hello.c:3: error: stray '\161' in program
hello.c:3: error: stray '\161' in program
hello.c:3: error: stray '\161' in program
hello.c:4: error: stray '\161' in program
hello.c:4: error: stray '\161' in program
hello.c:4: error: stray '\161' in program
hello.c:4: error: stray '\161' in program
注:hello.c的内容如下:
int main(int argc,char **argv)
{
printf("Hello Linux\n");
}