Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#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?

share|improve this question
28  
I believe it's i && (&i)? Interesting that I can't find a duplicate post on SO. – irrelephant Dec 19 '12 at 6:49
16  
while (i &&& i <-- j) {}. – KennyTM Dec 19 '12 at 7:57
3  
4  
Not a duplicate, but s a similar question and that's a good link – Nathan Cooper Dec 19 '12 at 10:43
1  
@Manav stackoverflow.com/questions/1642028/… – Izkata Dec 19 '12 at 11:33
show 8 more comments

2 Answers

up vote 193 down vote accepted

It's c = i && (&i);, with the second part being redundant, since &i will never evaluate to false.

For a user-defined type, where you can actually overload unary operator &, it might be different, but it's still a very bad idea.

If you turn on warnings, you'll get something like:

warning: the address of ‘i’ will always evaluate as ‘true’

share|improve this answer
75  
+1 for turn on warnings – OrangeDog Dec 19 '12 at 10:44
Why not : c = i & (&&i);; Where i is some label? – anishsane Dec 20 '12 at 9:21
2  
@anishsane i is defined as int and there's no labels in the question. Also, maximal munch... – Luchian Grigore Dec 20 '12 at 9:35
1  
@anishsane: And the && operator to take the address of a label is non-standard gcc extension anyway. But even if it were standard, the maximal munch rule would prevent it from being parsed that way (unless you insert a space). – Keith Thompson Dec 27 '12 at 20:36

There is no &&& operator or token in C. But the && (logical "and") and & (unary address-of or bitwise "and") operators do exist.

By the maximal munch rule, this:

c = i &&& i;

is equivalent to this:

c = i && & i;

It sets c to 1 if both i and &i are true, and to 0 if either of them is false.

For an int, any non-zero value is true. For a pointer, any non-null value is true (and the address of an object is always non-null).

share|improve this answer
3  
+1 for mentioning maximal munch – Abel Dec 28 '12 at 12:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.