c语言的错误:declaration syntax error是什么意思?

2024-12-29 20:54:07
推荐回答(3个)
回答1:

一般只要C语言非法语法都会提示
declaration syntax error
那么你的问题是:
textbackground(5)
textcolor(6)
出现问题,没有语句结束符“;”

回答2:

declaration syntax error
的意思是声明时语法错误。也就是程序中
的这两行
textbackground(5)
textcolor(6)
应该改为
textbackground(5) ;
textcolor(6) ;

回答3:

declaration syntax error
声明的语法错误

说的是下面这两句:
textbackground(5)
textcolor(6)