与运算(AND): 与运算符(&)用于将两个操作数的对应位进行逻辑与操作。如果两个位都是1,则结果为1;否则结果为0。 #include <stdio.h> int main() { unsigned int a = 10;