2011年6月3日

摘要: 今天上午,我学完了指针与字符串部分,这部分是通过一些例子加深对指针与字符串的理解。 我们首先来看1个例子:#include void main(){ int a[] = {6, 60, 600}; int*p =a; *p++; printf("%d", *p);}大家... 阅读全文

posted @ 2011-06-03 12:14 dodolook 阅读(3032) 评论(38) 推荐(3) 编辑