深入理解计算机系统 练习题2.7 答案与分析

测试代码

#include <stdio.h>  
#include "stdafx.h"
#include <iostream>
typedef unsigned char *byte_pointer;

void show_bytes(byte_pointer start, size_t len) {
    size_t  i;
    for (i = 0; i < len;i++) {
        printf(" %.2x", start[i]);
    }
    printf("\n");
}

void show_int(int x) {
    show_bytes((byte_pointer)&x, sizeof(int));
}

void show_float(int x) {
    show_bytes((byte_pointer)&x, sizeof(float));
}

void show_pointer(int *x) {
    show_bytes((byte_pointer)&x, sizeof(void *));
}

int main() {
    const char *s = "abcdef";
    show_bytes((byte_pointer)s,strlen(s));
    system("pause");

}

输出结果
这里写图片描述
这里输出的是字母的ASCII码

猜你喜欢

转载自blog.csdn.net/ciqingloveless/article/details/82684998
今日推荐