编译器报“storage class specified for parameter ”的错误,原因是头文件中的一个函数声明少写了一个分号“;”
下面的代码就显示了这个报警出现的例子:
int func1()
class unsigned short c;
int main()
{
return(0);
}
编译器报“storage class specified for parameter ”的错误,原因是头文件中的一个函数声明少写了一个分号“;”
下面的代码就显示了这个报警出现的例子:
int func1()
class unsigned short c;
int main()
{
return(0);
}