测试代码
#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码