当我收到此消息时,如何检测我的编码错误

How can I detect my coding mistake when I receive this message

link 到代码:http://gyazo.com/f0f4004eb606607ecaa021b5e22e6e06 当我在第 运行 个代码时出现以下错误。

"error: expected identifieror '(' "

我使用 gedit 编写这段代码。 我会感谢一些支持的人 ;)

提前致谢! 维森特

 int main(void);
               ^you should not do this.

你忘了在这句话后面加上 ; -

int height=n

而且 n 也没有在您的程序中声明。

int main(void); 声明中不应该有分号。

尝试将第 4 行替换为:int main(void)

此外,请阅读 C 函数声明语法 https://msdn.microsoft.com/en-us/library/c4d5ssht.aspx.