#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;
}
Die Ausgabe des obigen Programms, das mit kompiliert wurde, gcc
ist
0
1
1
Gibt mit der Option -Wall
oder eine Warnung aus:-Waddress
gcc
warning: the address of ‘i’ will always evaluate as ‘true’ [-Waddress]
Wie wird c
das obige Programm bewertet?
while (i &&& i <-- j) {}
.
i && (&i)
? Interessant, dass ich auf SO keinen doppelten Beitrag finden kann.