摘要: 类型一 #include <stdio.h>#include <stdlib.h> int main(){ int a=1,b=2,c=3; int *pa=&a,*pb=&b; int *p; *(p=&c)=*pa-(*pb); printf("%d",c); return 0;} 输出为-1; 阅读全文
posted @ 2019-04-22 20:41 鹿汐 阅读(1046) 评论(0) 推荐(0) 编辑