为什么会出现这个错误?
#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;
}