摘要: #include #include int main(){ char (*pStr)[9] = NULL; char arTest[2][9] = {"00001", "00002"}; pStr = arTest; printf("%s\n", *pStr); pStr++; printf("... 阅读全文
posted @ 2015-04-24 23:51 Superpig0501 阅读(188) 评论(0) 推荐(0) 编辑