Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选 PDF转换器

首页 / 操作系统 / Linux / C语言查看变量字节程序

C语言查看变量字节程序#include<stdio.h>
typedef unsigned char* byte_pointer;
void show_bytes(byte_pointer start,int n){
int i;
for(i=0;i<n;i++){
printf("%.2x",start[i]);
}
printf(" ");
}