我不明白为什么printf下面的代码中的最后一个不打印255.
printf
char c; c = c & 0; printf("The value of c is %d", (int)c); int j = 255; c = (c | j); printf("The value of c is %d", (int)c);
c
c ×1