Questions tagged [unsigned-long-long-int]

unsigned long long int specified in the C99 standard

unsigned long long long int is at least 64-bit in size and was specified in the C99 standard. It is the same as long long but unsigned.

151 questions
-6
votes
3 answers

Unsigned int64 C++ to Java

Can the following snippet be successfully converted to Java? u64 magic_table[5] = { 0x1000000010000000ull, 0x1000000000010000ull, 0x1000000000000001ull, 0x0100000001000000ull, 0x0000000100000001ull }; u64 test(u64 magic_sum, int index) { …
Ivan-Mark Debono
  • 12,439
  • 21
  • 93
  • 195
1 2 3
10
11