If I write "long i = 1;" instead of "long i = 1l;", will the 1 be recognized as int and then implicitly converted to long?

Edit: Thank you all. I see there's no type conversion. Is this also the case with the suffix u (like 10u)? Then what's the use of those l and u?

link|improve this question
could you explain why you are asking? – Mitch Wheat Sep 28 '09 at 3:32
There's an HP compiler on an old version of HP-UX that will complain about converting 'int 1' into a 'long' if you tweak it hard enough, but it is very debatable whether it is worth making it whinge about it. Most compilers won't complain - with justice. – Jonathan Leffler Sep 28 '09 at 3:37
To Mitch: Nothing special. I'm just wondering the usefulness of the suffixes. – phoenie Sep 28 '09 at 4:11
2  
There is a type conversion, it's just that the compiler is free to optimize it away in generated code (which it usually does). – Pavel Minaev Sep 28 '09 at 19:30
feedback

5 Answers

up vote -1 down vote accepted

The compiler will see what you are trying to assign and set the value to 1 immediately. There is no type conversion that happens with a literal. Even if you said long x = 1.0, you won't see a runtime type conversion.

By the way, on Windows, long and int are the same so there wouldn't be a type conversion anyway.

[Edit: made last comment specific to Windows; removed reference to preprocessor]

link|improve this answer
64-bit OS X and Linux aren't modern platforms, then? =) – Stephen Canon Sep 28 '09 at 3:49
Can you tell I'm a Windows programmer? I didn't realize Linux and OSX changed the definition of long when they went to 64-bits. – Steve Rowe Sep 28 '09 at 3:49
Yep; I think that there are a few unixes that even adopted the ILP64 model, so you can't even assume that int didn't change with the transition to 64 bits. – Stephen Canon Sep 28 '09 at 3:55
5  
The preprocessor is not involved in type conversion. – Laurence Gonsalves Sep 28 '09 at 3:55
I've fixed what were called out as the errors but people keep voting this down. If you are going to vote it down, please explain why so I can make the answer better. – Steve Rowe Sep 29 '09 at 15:47
show 3 more comments
feedback

The type of the constant 1 is int, so technically a type conversion will be done but it'll be done at compile time and nothing is lost.

However, consider the more interesting example of:

int main(void)
{
    long long i = -2147483648;
    long long j = -2147483647 - 1;

    printf( " i is %lld, j is %lld\n", i, j);

    return(0);
}

I get the following results from various compilers:

  • MSCV 9 (Version 15.00.21022.08):

                i is 2147483648, j is -2147483648
    
  • GCC (3.4.5):

                i is -2147483648, j is 0
    
  • Comeau (4.3.10.1):

                i is 2147483648, j is -2147483648
    
  • Digital Mars:

                i is -2147483648, j is -2147483648
    

I'm not sure yet how to account for the differences. It could be one or more of:

  • compiler bugs
  • C90 vs. C99 rules in operand promotion ("long long" support is C99, but some of these compilers might be compiling for C90 with "long long" as an extension)
  • implementation defined behavior
  • undefined behavior

FWIW, the behavior of MSVC and Comeau is what I expected - which is something that many might still find surprising. The logic (in my mind) for the first operation is:

  • -2147483648 gets tokenized as '-' and 2147483648
  • 2147483648 is an unsigned int (since it can't fit into an int - I believe this is different in C99)
  • applying the unary '-' operator results in 2147483648 again due to unsigned arithmetic rules
  • converting that into a long long doesn't change the sign.

The logic for the second operation is:

  • -2147483647 gets tokenized as '-' and 2147483647
  • 2147483647 is a signed int
  • subtracting 1 results in -2147483648 since there's no problem representing that number
  • converting that into a long long doesn't change the sign.
link|improve this answer
feedback

Most modern compilers should be smart enough to see that you're assigning the literal to a long, and will make the literal of that type instead of forcing a pre-assignment conversion.

link|improve this answer
feedback

Pretty sure that if written exactly as stated, it will be equivalent to i = 1l; Any conversion will be done at compile time.

However, if you write

long i = (unsigned int)-1;

then i will probably not be what you expected.

link|improve this answer
When I compile that, i is -1. How is this unexpected? – Chris Lutz Sep 28 '09 at 3:40
On a 64-bit system with a LP64 model and 2s-complement arithmetic (OS X or Linux, for example), this will assign the value 0x00000000ffffffffL to i. – Stephen Canon Sep 28 '09 at 3:53
That's not unexpected, that's just what happens when you convert between signed and unsigned types and make assumptions about type sizes for "normal" platforms. – Chris Lutz Sep 28 '09 at 4:29
1  
I did say probably. If you do not know enough to already know the answer, I would suggest that 0x00000000ffffffff probably was unexpected. – Frank Sep 28 '09 at 5:29
As -1 can be represented by long, the conversion will not take place. Check the ansi c standard for the details of type conversion rules. – steve Sep 28 '09 at 6:12
feedback

Today's compilers will recognize it and generate the same result.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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