编写简单的输出“hello”程序编译出错: syntax error near unexpected token `(‘

源代码截图:

源代码:

#include<stdio.h>
int main()
{
printf("hello\n");
return 0;
}

在命令行里输入:

1. "gcc hello.c" (对hello.c进行预处理,编译,汇编并连接形成可执行文件a.out,没有指定输出文件,默认输出文件名为a.out)

2. "./hello.c"  错误操作

编写简单的输出“hello”程序编译出错: syntax error near unexpected token `(‘

错误原因:hello.c不是可执行文件,a.out才是可执行文件

所以将第二部操作改为:"./a.out"

正确结果截图:

编写简单的输出“hello”程序编译出错: syntax error near unexpected token `(‘

至此问题解决

上一篇:微信小程序【WXSS 文件编译错误】unexpected “?“at pos 1的解决办法。


下一篇:Uncaught SyntaxError: Invalid or unexpected token