#include <stdio.h>
int main(void)
{
int i, c;
for (i = 0; i < 3; i++) {
c = i &&& i;
printf("%d\n", c);
}
return 0;
}
The output of the above program compiled using gcc is
0
1
1
With the -Wall or -Waddress option, gcc issues a warning:
warning: the address of ‘i’ will always evaluate as ‘true’ [-Waddress]
How is c being evaluated in the above program?

i && (&i)? Interesting that I can't find a duplicate post on SO. – irrelephant Dec 19 '12 at 6:49while (i &&& i <-- j) {}. – KennyTM Dec 19 '12 at 7:57