又看不懂了,还是来请教,先多谢大伙儿帮忙,呵呵
uchar const Line_Count = 6;
uchar code Msg[][80]=
{
"Many CAD users dismiss",
"process of creating PCB",
"of view.with PCB layout",
"placement and track routing,",
"can often be the most time",
"And if you use circuit simulation",
"you are going to spend even more"
};
....................................
uchar *p = Msg[0];
uchar *q = Msg[Line_Count] + strlen(Msg[Line_Count]);
这里的*q指的是哪儿呢? |