03-06-2006 09:17 AM
03-06-2006 02:41 PM
03-07-2006 03:41 AM
03-07-2006 10:44 AM
Hi ebelisha,
When you declare a "long long" datatype what are you looking to get?
If you want to get a 64 bit integer (I'm assuming this because long is 32 bit integer and you wanted double long), there is a way to declare this. You can use the __int64 declaration to get a 64 bit integer. The following link from MSDN describes the datatype. Note that __int64 is not an ANSI C data type, it's MS specific, so you will have problems trying to compile the code on a UNIX based system.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccelng/htm/basic_45.asp
03-07-2006 11:46 AM