我有這樣的代碼:是什麼意思? ç
#include<stdio.h>
int main(void)
{
if (-8 & 7)
{
printf("Math is good -8 and 7 are both not zero\n");
}
else
{
printf("Everything we know is a lie!\n");
}
system("PAUSE");
return (0);
}
我是新的C和我試圖找出這個&運營商做什麼,有人可以給我講解一下?
請參閱:https://en.wikipedia.org/wiki/Bitwise_operations_in_C –
這是一個簡單的錯字或概念錯誤;我們應該刪除這個問題。 – Prune