C/C++错误集锦(DEV-C++):调用自定义函数时提示[Error] ‘func’ was not declared in this scope

原文链接:http://www.juzicode.com/cpp-error-not-declared-in-this-scope

错误提示:

调用自定义函数时提示[Error] ‘func’ was not declared in this scope

//juzicode.com;vx公众号:桔子code 
//dev-c++5.9.2 
#include<stdio.h>  

int main(void)
{
    func(); 
    printf( "juzicode.com;vx公众号:桔子code\n"); 
    return 0;
}

void func(void)
{
    printf("func: test\n"); 
} 

错误原因:

1、func()函数的定义在第7行的调用位置之后,并且在调用前没有做函数声明,所以提示’func’ was not declared in this scope

  

解决方法:

1、在第7行之前,也就是main()函数前声明函数:

//juzicode.com;vx公众号:桔子code 
//dev-c++5.9.2 
#include<stdio.h>  

void func(void);//调用前先声明 
int main(void)
{
    func(); 
    printf( "juzicode.com;vx公众号:桔子code\n"); 
    return 0;
}

void func(void)
{
    printf("func: test\n"); 
} 

 


如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注