?? bits.c
字號:
#include <stdio.h>#define RevByte(low,high) ((high) << 8 | (low))#define RevWord(lowest,lower,higher,highest) ((highest) << 24 | (higher) << 16 | (lower) << 8 | lowest)int main(){ int a; a = RevWord(0x0a,0x0b,0x0c,0x0d); printf("%x\n",a); return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -