摘要: #include<stdio.h> int main() { int a[10]; for (int i = 0;i < 10;i++) { a[i] = i; } int* p = a; printf("%d\n",*p);//1 printf("%d\n",*p);//1 printf("%d\ 阅读全文
posted @ 2020-12-14 22:25 TITAIN 阅读(36) 评论(0) 推荐(0)