摘要: #include int main(){ char s[] = "ABCD"; char *p; for(p=s; p<s+4; p++) { printf("%s\n",p); } while(1) { }}结果:ABCDBCDCDD 阅读全文
posted @ 2015-08-04 17:09 hbg-rohens 阅读(204) 评论(0) 推荐(0) 编辑