KEIL编译通不过,提示error C141: syntax error near 'void',请教大神具...
发布网友
发布时间:2024-09-11 07:11
我来回答
共2个回答
热心网友
时间:2024-09-11 07:55
KEIL编译提示错误,因程序中有两处错误。第一个,
uchar code leddata[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71} ;//这行尾必须有分号
第二个在主程序中
void main()
{
while(1)//这行不能有分号
{//加一对大括号
display();
}
}
热心网友
时间:2024-09-11 07:46
uchar code leddata[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71,}
没加分号“;”。