位運算複習——字節的奇偶校驗和反轉一個字節中的二進制位

#include <stdio.h> #include <stdint.h> /** * 用軟件實現字節的奇偶校驗 * 返回值:若是這個字節中含有奇數個1,則返回1; * 不然返回0 */ uint8_t parityCheck(uint8_t val) { uint8_t cnt = 0; while (val) { if (val
相關文章
相關標籤/搜索