2017年11月27日

摘要: 代码记录: #include <stdio.h> int exam01() { int k=5; int *p; p=&k; printf("%x\t%x\n",p,&p); printf("%d\t%x\n",k,p); *p=10; printf("%d\n",k); int a[10]={7, 阅读全文
posted @ 2017-11-27 00:01 cellursss 阅读(156) 评论(1) 推荐(0)

导航