我正在尝试将结构传递给我的函数,但我无法弄清楚。我有下面的代码
struct box
{
char sMaker[40];
float fHeight; //The height of the box
float fWidth; //The width of the box
float fLength; //The length of the box
float fVolume; //The volume of the box
}; //end box
void calcVolume (box *p)
{
p‐>fVolume = p‐>fWidth * p‐>fHeight * p->fLength;
} //end calcVolume
它返回 p- 是一个未声明的标识符的错误。我对c ++真的很陌生,为什么不编译。
太感谢了。