Loading

摘要: 此文章参考《深入理解计算机系统》P31。 先看如下代码: 12345的十六进制表示为:0x00003039 1 #include <stdio.h> 2 3 int main() 4 { 5 int a = 12345; 6 char *q = (char *)(&a); 7 for(int i = 阅读全文
posted @ 2018-09-04 20:58 拾月凄辰 阅读(435) 评论(0) 推荐(0) 编辑