一、将16进制数转换为10进制数



#include <stdio.h>

int i;
unsigned char a[3] = {0x03,0x04,0x05};

i = a[0]*256 + a[1];//将16进制数转换为10进制数