划水豹 发表于 2019-3-8 13:22:31

求帮忙,在自定义函数时报错

#include <stdio.h>
void xuhui;
void deny;
int main()
{
       
        printf("for he's a jolly good fellow!");
    deny();/*自定义函数*/
    xuhui();/*自定义函数*/
}
void xuhui()/*定义函数*/
{
        printf("for he's a jolly good fellow!");
}
void deny()/*定义函数*/
{
        printf("for he's a jolly good fellow!");
}

风过无痕丶 发表于 2019-3-8 13:24:55

#include <stdio.h>
void xuhui();   加上括号
void deny();
int main()
{
      
      printf("for he's a jolly good fellow!");
    deny();/*自定义函数*/
    xuhui();/*自定义函数*/
}
页: [1]
查看完整版本: 求帮忙,在自定义函数时报错