为了账号安全,请及时绑定邮箱和手机立即绑定

为什么会出现这个错误?

#include <stdio.h>


/* 自定义整型函数 sayLove() */

int sayLove();

{

    printf("%s\n","I Love imooc");//在这里输入输出语句printf,输出内容为I Love imooc 

   

    return 0;

}


/* 自定义整型函数 dividLine() */

int dividLine();

{

    printf("%s\n", "*************");

    return 0;

}


运行失败

hello.c:5:1: error: expected identifier or '(' before '{' token
{
^
hello.c:13:1: error: expected identifier or '(' before '{' token
{
^


/* 主函数 */

int main()

{

    return 0;

}


正在回答

2 回答

C函数定义的时候不应该加分号;“int sayLove();” 应该改成“int sayLove()”,同样“int dividLine();”应该改成“int dividLine()”

0 回复 有任何疑惑可以回复我~

....

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么会出现这个错误?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信