Which data-type

I need to ask:
Which of the data types is "large" enough to hold value worth 600billion(600,851,475,143)? Under 32-bit machine running XP SP2,Dev-Cpp
I don't know if Dev-C++ has long long but if it has it should be large enough.
closed account (zb0S216C)
signed long long or unsigned long long. See here for ranges: http://msdn.microsoft.com/en-us/library/s3f49ktz(v=vs.80).aspx

Wazzak
No Dev-Cpp doesn't have unsigned long long and I've once checked this link you gave me,it just wouldn't work
Not even Orwell Dev-C++? I think that one comes with compilers that support large parts of C++11.

-Albatross
Look into ZZ. It is built to handle far far more memory. Don't remember what library you need for it though.
Ok thanks y'all,I'll go use codepad's compiler--see if it can handle it and if otherwise I'll sort it out myself
If this is what I think it is, I did the program in Code:Blocks and in VS2010. Both support unsigned long long.
@ResidentLolliop Code::Block with what mingw? I use the mingw32 that came with Dev-Cpp,and both the Dev and the C::B are rejecting it
> Code::Block with what mingw?

The Nuwen build of MinGW is a good option http://nuwen.net/mingw.html
Topic archived. No new replies allowed.