摘要: #include<stdio.h> int main() { int *p; int x=10; p=&x; printf("%d\n,*p); 1:*p++; 2:(p)++;3:(p++); printf("%d\n",*p); return 0; } 1:10 6487576 2:10 645 阅读全文
posted @ 2020-12-15 00:02 张舒畅 阅读(38) 评论(0) 推荐(0) 编辑