05 2014 档案

指针随想
摘要:本次主题:指针与数组在进入主题前,我们先看一个例子:#includeint main(){ int a[5] = { 1, 2, 3, 4, 5 }; int *ptr = (int *) (&a + 1); printf("%d,%d\n", *(a + 1), *(ptr - ... 阅读全文

posted @ 2014-05-01 04:59 夏华林的博客 阅读(462) 评论(3) 推荐(2)