unsigned char code table0[] = {"你好"};
void display()
{
unsigned char i=0;
//LCD第一行文字设置
pos=LCD_pos(2,0);
LCDwrite_cmd(pos);
while(table0[i]!='\0')
{
LCDwrite_dat(table0[i]);
i++;
}
}
这是LCD12864显示“你好”的一部分程序,关于while(table0[i]!='\0')的(table0[i]!='\0'是什么意思没能理解过来,请帮忙看一下 |