C语言2个char类型字节,合并成int类型 和分拆

char dataH ,dataL;

int DATA =dataH<<8|data1L 合并

dataH = (DATA>>8)&0xFF; dataL =DATA&0xFF; 分拆

你可能感兴趣的:(C语言备忘记录,c语言,数组)