Loading

摘要: 指针:所有类型的指针在内存中都占4个字节。指针变量的类型在转换过程中不会导致地址数据受影响。影响的是和指针配对的普通存储位置。 1 #include <stdio.h> 2 int main() { 3 int num = 300; 4 int *p_num = &num; 5 printf("p_ 阅读全文
posted @ 2017-04-19 20:00 Peter·Dong 阅读(138) 评论(0) 推荐(0)