bool free[505];
[Error] 'bool free [505]' redeclared as different kind of symbol
bool free[505];
[Error] 'bool free [505]' redeclared as different kind of symbol
C语言中出现以下报错:
【[Error] ‘m’ redeclared as different kind of symbol】
改正方法:
对一个变量,只能声明一次,多次声名,就算声明类型相同,也是错误的。
而函数中,可以直接在 “函数原型” 中声明。
如下:
int ne(int x)// 第一次声明X在函数定义时。
{
int x = 0;//第二次声明X在函数体内。重复!!!
int sum = 0;
int ne = 0;
while(x > 0)
{
sum = x % 8;
ne = ne*10 + sum;
x = x/8;
}
return ne;
}