vote up 1 vote down star
1

If I do:

#define TIMEFIXCONST 11644473600

on a 32bit machine, will it overflow or will it be stored as a long long and still work properly? Should I just define a global unsigned long long and use that instead?

flag

1  
If you are afraid of overflow, may I suggest you use the suffix "L"? – luiscubal Oct 29 at 18:56
If you need it to be a long long, the correct suffix is 'LL', of course; a single 'L' indicates long. This assumes you have a compiler that supports C99. – Jonathan Leffler Oct 30 at 3:42

4 Answers

vote up 5 vote down check

A macro is only a text substitution, you can't overflow a macro.
It depends on where do you assign later TIMEFIXCONST.

But as a rule of thumb, when using constants use const int or const long long if you require.

link|flag
vote up 3 vote down

The number is not "stored" anywhere. It will just be inserted in the program source code where you use the macro, just as if you had written it directly. But if you want the literal itself to be of type long long, write:

#define TIMEFIXCONST 11644473600LL
link|flag
vote up 1 vote down

A (non?)standard way to do that would be

#define TIMEFIXCONST 11644473600LL

Then it will be treated as "long long". What happens after that depends on the statement you use it in (overflow, etc). If you try to assign it to a 32-bit variable it will get truncated and the compiler should throw a warning.

link|flag
That's standard - as long as the standard is C99. It's non-standard if the standard is C89. – Jonathan Leffler Oct 30 at 3:42
vote up 0 vote down

If you store this in an int, it will overflow on both x64 and x86. If you store it in a long, you wont have the problem on either platform. The #define has no bearing on memory.

link|flag
It's not guaranteed to fit into a long either - int is a minimum of 16 bits and long is a minimum of 32 bits (and different x86 and x86-64 ABIs define these differently). – caf Oct 29 at 20:31

Your Answer

Get an OpenID
or

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