摘要: #include<stdio.h> #include<math.h> int main() { int* p=NULL; int n[5] = { 1,2,3,4,5 }; p = n; printf("++p = %d\n",p ); printf("*p = %d\n", *p++); prin 阅读全文
posted @ 2020-12-14 23:13 陈泽坤 阅读(50) 评论(0) 推荐(0)