标题: error: quoted string should contain at least [打印本页] 作者: heicad 时间: 2014-6-14 04:28 标题: error: quoted string should contain at least error: quoted string shouldcontain at least one character
程序如下:
u8 t=0;
t='';
while(1)
{
.......
}
显示错误的程序行是t='';排查错误时,发现:
其间少了一个空格,改为t=' ';时
重新编译: 0 Error(s), 0Warning(s). 正确!!