摘要: #include <stdio.h>int main(){ int a = 10; int *p; p = &a; printf("这就是指针p指向的地址里存的值%d ,说起来容易,用起来准糊涂\r\n", *p); //改了指针指向的地址的内容 *p = 8888; printf("这样一来,a的 阅读全文
posted @ 2019-01-24 01:33 saintdingtheGreat 阅读(382) 评论(0) 推荐(0) 编辑