Top "Unsigned-long-long-int" questions

unsigned long long int specified in the C99 standard

Java equivalent of unsigned long long?

In C++, I enjoyed having access to a 64 bit unsigned integer, via unsigned long long int, or via uint64_t. …

java unsigned primitive unsigned-long-long-int
Using long int in PHP

I am trying this out, but am unable to store large value $var = rand(100000000000000,999999999999999); echo $var; // prints a 9 digit value(…

php int unsigned-long-long-int
Unsigned Long Long from Double in Swift

I used to use the following in Objective-C: double currentTime = CFAbsoluteTimeGetCurrent(); // self.startTime is called before, like // self.startTime = CFAbsoluteTimeGetCurrent(); …

swift double unsigned-long-long-int
Getting big random numbers in C/C++

Standard rand() function gives numbers not big enough for me: I need unsigned long long ones. How do we get …

c++ c random unsigned-long-long-int
unsigned long long vs unsigned long(portability point of view)

I want to be able to use large positive integers(8 bytes) in my project, even though sizeof(unsigned long) yields 8 …

c++ unsigned-long-long-int
Printing unsigned long long int Value Type Returns Strange Results

I have a problem while using the printf function to print values of type unsigned long long int I have …

c syntax printf unsigned-long-long-int
How to convert a hex string to an unsigned long?

I have following hex value CString str; str = T("FFF000"); How to convert this in to an unsigned long?

c++ mfc hex data-conversion unsigned-long-long-int
How can you easily calculate the square root of an unsigned long long in C?

I was looking at another question (here) where someone was looking for a way to get the square root of …

c unsigned-long-long-int long-double
Unsigned long long arithmetic into double

I'm making a function that takes in 3 unsigned long longs, and applies the law of cosines to find out if …

c++ geometry double trigonometry unsigned-long-long-int
java converting int to short

I am calculating 16 bit checksum on my data which i need to send to server where it has to recalculate …

java truncate unsigned-long-long-int