C/C++错误集锦(DEV-C++):为变量a赋值时提示:[Error] ‘a’ undeclared (first use in this function)

原文链接:http://www.juzicode.com/cpp-error-devc-undeclared-first-use/

错误提示:

为变量a赋值时提示:[Error] ‘a’ undeclared (first use in this function)

//juzicode.com;vx:桔子code 
#include <stdio.h>
int main(void)
{
	a = 10;
	printf("a=%d",a);
	return 0;
} 

可能原因:

1、变量a在使用前没有定义其类型。

解决方法:

1、在a=10语句前先定义a的类型。

//juzicode.com;vx:桔子code 
#include <stdio.h>
int main(void)
{
	int a; //先定义a的类型
	a = 10;
	printf("a=%d",a);
	return 0;
} 


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

发表评论

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