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.

Several questions on this website reveal pitfalls when mixing signed and unsigned types and most compilers seem to do a good job about generating warnings of this type. However, GCC doesn't seem to care when assigning a signed constant to an unsigned type! Consider the following program:

/* foo.c */
#include <stdio.h>
int main(void)
{
    unsigned int x=20, y=-30;
    if (x > y) {
        printf("%d > %d\n", x, y);
    } else {
        printf("%d <= %d\n", x, y);
    }
    return 0;
}

Compilation with GCC 4.2.1 as below produces no output on the console:

gcc -Werror -Wall -Wextra -pedantic foo.c -o foo

The resulting executable generates the following output:

$ ./foo
20 <= -30

Is there some reason that GCC doesn't generate any warning or error message when assigning the signed value -30 to the unsigned integer variable y?

share|improve this question
1  
Note that you should use %u for printing unsigned int. – Bastien Léonard May 5 '10 at 8:45
@Bastien, indeed; perhaps more interesting is that, as AndreyT pointed out in his answer below, printf("%d") shows the signed value instead of the unsigned value (4294967266) which is used by the comparison operator! – maerics May 5 '10 at 9:33
1  
It's because of the 2's complement representation of signed int: en.wikipedia.org/wiki/Two%27s_complement (this representation isn't guaranteed by the C standard, but in practice I've never heard of another representation being still in use) – Bastien Léonard May 5 '10 at 10:06

2 Answers

up vote 8 down vote accepted

Use -Wconversion:

~/src> gcc -Wconversion -Werror -Wall -Wextra -pedantic -o signwarn signwarn.c
cc1: warnings being treated as errors
signwarn.c: In function 'main':
signwarn.c:5: error: negative integer implicitly converted to unsigned type

I guess the trick here is that gcc is pretty good at generating warnings, but it defaults to not doing so for sometimes unexpected cases.

share|improve this answer

The ability to convert negative value to unsigned type is a feature of C language. For this reason, the warning is not issued by default. You have to request it explicitly, if you so desire.

As for what your program outputs... Using %d format specifier of printf with an unsigned value that lies beyond the range of type int results in undefined behavior, which is what you really observed in your experiment.

share|improve this answer
Hey, good catch. printf("%d", y); is in a whole other category than y=-30;. – Pascal Cuoq May 5 '10 at 8:54
Great point, I could imagine using a negative value to create a desired bitfield, for example. – maerics May 5 '10 at 9:25

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.