c语言编译时出现:错误 noname.c 57: 在定义中有太多的类型 ,请问下面哪里有错误 啊?

structBMP_Head{charid[2];unsignedlongfilelength;intreserved1;intreserved2;unsignedlon... struct BMP_Head
{ char id[2];
unsigned long filelength;
int reserved1;
int reserved2;
unsigned long imageposition;
unsigned long headlength;
unsigned long imagewidth;
unsigned long imageheight;
int bitplane;
int colorbit;
unsigned long compressmethod;
unsigned long imagelength;
unsigned long horizontaldefinition;
unsigned long verticaldefinition;
unsigned long usedcolornumber;
unsigned long importantcolornumber;
}bmp_head;
展开
 我来答
icecoobe
2012-04-11 · TA获得超过1989个赞
知道小有建树答主
回答量:1058
采纳率:100%
帮助的人:1105万
展开全部
但看这个定义是没有问题的,肯定是你使用这个结构体的时候,写法不对 。。。
更多追问追答
追问
可是程序很长,用到bmp_head的地方很多,编译的时候其他的地方都没错误,就只有这个地方报错
---错误 noname.c 57: 在定义中有太多的类型 ,就指向这个结构体定义部分。
追答
那估计是你用错了吧?

你是不是这样写了
bmp_head a;

或者

BMP_HEAD a;
tidecao2006
2012-04-11 · TA获得超过1228个赞
知道小有建树答主
回答量:842
采纳率:0%
帮助的人:789万
展开全部
要么写成
struct BMP_Head
{
……
};
要么写成
typedef struct BMP_Head
{
……
} bmp_head;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式