指针-高低字节交换
2018-10-19 本文已影响5人
luowenbin
void trim(short* num) {
char *p=(char *)num;
char temp=*p;
*p=*(p+1);
*(p+1)=temp;
}
void trim(short* num) {
char *p=(char *)num;
char temp=*p;
*p=*(p+1);
*(p+1)=temp;
}