If I write this declaration:
unsigned ux = 2147483648;
(231), will the C compiler treat 2147483648 as an unsigned or signed value?
I've heard that constant values are always treated as signed, but I don't think that's always right.
|
feedback
|
|
The value of an unsuffixed decimal constant such as In C89/C90, the type is the first of:
in which it fits. In C99 and later, it's the first of:
in which it fits. You didn't tell us what implementation you're using, but if But in your particular case:
it doesn't matter. If the constant is of type So if You can exercise some control over the type of a constant by appending a suffix to it. For example, Incidentally, your question's title is currently "About Class Cast.(if I write unsigned ux=2147483648(2 to the 31 st))", but your question has nothing to do with classes (which don't exist in C) or with casts. I'll edit the question. | |||||
feedback
|
Usuffix specifier for the value:unsigned ux=2147483648U;– Joachim Pileborg Feb 23 at 7:24