c语言 指针的值
摘要:
int num = 1; int *p = # printf("%x", &num);//打印 0x7dfe88 printf("\n%x", p);//打印 0x7dfe88 printf("\n%x", *p);//打印 1 小结:指针的值实际上就是一个地址(十六进制数字) 阅读全文
posted @ 2016-01-13 11:01 寒魔影 阅读(726) 评论(0) 推荐(0) 编辑
posted @ 2016-01-13 11:01 寒魔影 阅读(726) 评论(0) 推荐(0) 编辑
posted @ 2016-01-12 17:51 寒魔影 阅读(23647) 评论(2) 推荐(1) 编辑
posted @ 2016-01-12 17:15 寒魔影 阅读(1185) 评论(0) 推荐(0) 编辑