作者CuckooBoy (阿书)
看板ASM
标题[问题] 传结果呼叫问题
时间Sun Sep 9 22:45:11 2007
最近买了一本C与8051-使用keil c的书,亲自每个范例做一次..
其中有一个范例怪怪的...
麻烦高手帮忙看一下
#include <stdio.h>
void main(void)
{
byte a;
a=func();
}
byte func(void)
{
byte i;
i++;
return i;
}
=======
MAIN.C(5): error C202: 'byte': undefined identifier
MAIN.C(5): error C141: syntax error near 'a'
MAIN.C(6): error C202: 'a': undefined identifier
MAIN.C(9): error C129: missing ';' before 'func'
Target not created
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 123.195.6.78
1F:→ sunneo:typedef unsigned char byte; 09/09 22:45
2F:→ sunneo:一个byte是一种unsigned char 09/09 22:46
3F:推 sunneo:意思就是说 你忘了作到自定义 09/09 22:50
4F:→ sunneo:也许有一个标头档忘了include 像是REG51.h REG51X.h.. 09/09 22:51
5F:推 MasterChang:跟8051或ASM有什麽关系? 09/09 22:54