C語言經典面試題2--位操做:置0、置一、取值、取反

一、對指定位置0或置1,其餘位不變web #include <stdio.h> void bit_set(unsigned char *p_data, unsigned char position, int flag) { int a = 1<<(position-1); if (flag) { *p_data |= a; } else { *p_data &= ~
相關文章
相關標籤/搜索