摘要: C语言中所有的数据都可以理解成是地址(指针)+ 类型(对地址的解读) #include <stdio.h> void printptr(void *p) { printf("p = %p; *p = %016lx\n", p, *(long *)p); } int x; int main(int a 阅读全文
posted @ 2022-04-02 21:47 One7 阅读(28) 评论(0) 推荐(0) 编辑