C/C++教程

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

本文主要是介绍编写简单的输出“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.c不是可执行文件,a.out才是可执行文件

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

正确结果截图:

至此问题解决

这篇关于编写简单的输出“hello”程序编译出错: syntax error near unexpected token `(‘的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!