#include <stdio.h>
volatile int i;
int main()
{
int c;
for (i = 0; i < 3; i++)
{
c = i &&& i;
printf("%d\n", c);
}
return 0;
}
を使用してコンパイルされた上記のプログラムの出力は次のとおりgcc
です。
0
1
1
-Wall
or-Waddress
オプションを使用するとgcc
、警告が発行されます。
warning: the address of ‘i’ will always evaluate as ‘true’ [-Waddress]
c
上記のプログラムでどのように評価されていますか?