unsigned long long int specified in the C99 standard

learn more… | top users | synonyms

1
vote
1answer
41 views

are signed integer and unsigned integer one-one mapping with each other?

I want to make ip-port pair as a search key, so I have the following function int64_t make_pair(u_int32_t ip, u_int16_t port) { u_int64_t ip_u64 = ip; ip_u64 = ip_u64 ...
0
votes
0answers
132 views

What does an Unsigned Long in C look like in PIC24 Assembly Language?

I have a variable defined in C on a PIC24 Let's say the name of the variable (in the C file) is The_Number_Of_Bytes In the PIC24 C code, it is defined like this.... unsigned long ...
0
votes
1answer
59 views

unsigned long long to binary

I am trying to check the set bits of an unsigned long long in c++ using below algorithm which only checks whether the bit is set or not.But my problem is the answer that I get is wrong.Please help me ...
-6
votes
3answers
162 views

Unsigned int64 C++ to Java [closed]

Can the following snippet be successfully converted to Java? u64 magic_table[5] = { 0x1000000010000000ull, 0x1000000000010000ull, 0x1000000000000001ull, 0x0100000001000000ull, ...
0
votes
2answers
119 views

Unsigned long returning negative in C++

below when any of the numA-D is multiplied numerous times the number suddenly becomes a negative. For example when numA is multiplied 3 times by 256 the number then becomes negative,but not if only ...
0
votes
3answers
112 views

C++ Largest Numerical Storage [duplicate]

Is there an equivalent to Java's Bigint in C++ that can store the following number: ...
1
vote
2answers
148 views

unsigned long long behaving odd in C

I stumbled across a very odd issue when running a program compiled for MIPS. The following snippet of code is to get the time epoch and store it in microsecond-precision in an unsigned long long ...
5
votes
1answer
212 views

Double to `unsigned long long` causes memory (stack?) corruption

What is wrong with the following code (crashes): #include <string> #include <iostream> void foo(std::string str, unsigned long long val) { std::cout<< str<< " "<< ...
0
votes
3answers
80 views

Division of a long long C type

I need to use the 'long long' c type, to store data in a very large array. Since my code is large, I made up this fairly simple code which has the same problem. So, it iterates 222 times in the loop, ...
0
votes
2answers
148 views

Will a 64-bit Unsigned Integer wrap around on 32-bit system?

Simple question, need an answer quickly please! Take this situation on a 32-bit machine: Unsigned long long n = 1; n -= 2; I know on a 64-bit machine, this would wrap around to the highest ...
0
votes
2answers
362 views

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 the triangle is obtuse, acute or a right triangle. Should I just cast the variables to doubles ...
0
votes
2answers
331 views

(lldb) Print unsigned long long in hex

I am trying to debug my Objective-C program, and I need to print my unsigned long long variable in hex. I am using the lldb debugger. In order to print short as hex, you can use this: (lldb) type ...
1
vote
1answer
86 views

Incorrect results from function which is using unsigned long long int

The following is the code which I typed in c unsigned long long int Je=23; int col=2,row=2; void mod(unsigned long long int mat1[][col],unsigned long long int mat2[][col],int r) { int i,j; ...
0
votes
2answers
264 views

Dynamic Programming Issue - Fibonacci Sequence

I was reading this Wikipedia article, and attempting to implement a 'map' based solution in C, where a 'map' is just an int array, initialized to 0. For some reason it works up to fib(93), then ...
6
votes
1answer
202 views

Why aligning of long long union member is bigger than the containing union/struct? Is this correct?

From this question one could start to believe that alignment of a union is not less than the largest alignment of it's individual members. But I have a problem with the long long type in gcc/g++. The ...
9
votes
1answer
444 views

Can the Django ORM store an unsigned 64-bit integer (aka ulong64 or uint64) in a reliably backend-agnostic manner?

All the docs I've seen imply that you might be able to do that, but there isn't anything official w/r/t ulong64/uint64 fields. There are a few off-the-shelf options that look quite promising in this ...
3
votes
4answers
2k views

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 no idea what's wrong. I'm using Dev-Cpp 4.9.9.2 and Visual Studio 2010 Professional (I know that ...
1
vote
3answers
840 views

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 in my system, I read that in most systems unsigned long is only 4 bytes and I ...
1
vote
2answers
399 views

Store unsigned long long using Core Data

Variations of this question have been asked here and here, but it appears that the question hasn't received a clear answer. The problem that I face is that the MPMediaLibrary framework keeps a ...
1
vote
3answers
480 views

How can I seekg() files over 4GB on Windows?

I am on Windows 7, 64bit and NTFS. I am building a DLL that must be 32 bit. I have a very simple routine that I'd like to implement in C++. I'm reading a large file using: unsigned long p; ifstream ...
1
vote
2answers
377 views

Issue with converting String to unsigned long

I have a little problem with converting a char string array to an unsigned long. This is my input for executeCommand(). 0001000118218;326 And this is what i get back. Received command: ...
2
votes
2answers
514 views

why is overload with unsigned __int64 and __int64 ambiguous

Using VS2008, why is this OK (not allowed to use 2010). void assert(int exp, int actual) {if (exp!=actual) printf("assert failed\n");} void assert(unsigned int exp, unsigned int actual) {if ...
3
votes
3answers
4k views

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(largest possible) How to get a desired value ?
1
vote
3answers
415 views

'unsigned long int', and 'unsigned long long int' assignment issue

A few weeks ago, I was using for first time (I'm not used to use them) floats, doubles, and I have some problems with the comparison operand. I also have had problems while trying to assign values to ...
4
votes
3answers
1k views

64bit integer conversion from string

I'm dealing with the problem of reading a 64bit unsigned integer unsigned long long from a string. My code should work both for GCC 4.3 and Visual Studio 2010. I read this question and answers on the ...
0
votes
2answers
146 views

problem when converting a .const file (c++) to .java class

I have a .const file, lets say abc.const (a cpp file). the contents of that file is, xyz :ullong:0x1000000000000000ULL yub :ullong:0x0100000000000000ULL .... .... now i ve a program to convert this ...
2
votes
3answers
366 views

problem in unsigned long long in c++

i have a cpp file say xyz.cpp, which contains long constants. now i need to change long constants to long long. ex long a=0x00000001 to long long a=0x0000000000000001 for future purpose. ( i ...
0
votes
2answers
910 views

how do I declare an integer variable of 1024 bits in length?

I'm trying to write an algorithm for a number theory/computer science merged class that can factor large numbers in better than exponential time. I am using the g++ compiler on a 64 bit machine but ...
4
votes
3answers
3k views

Parsing 64-bit unsigned integer on iOS

I have very big unsigned integral number in NSString. This may be big to 2^64. Is there an existing functions/classes parsing this? As I know, it's unsigned long long value, but, It's hard to know ...
0
votes
2answers
1k views

How to correctly multiply two long long ints?

I want to multiply long numbers which are given in a 2^32 basis. I already thought of an nice algorithm to do that, but unfortunatly I'm stuck. The situation I'm stuck at, is how I do multiply two ...
0
votes
4answers
5k views

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 and match with the provided checksum. Checksum value that i am getting is in int but i have only ...
2
votes
6answers
4k views

Printing unsigned long long using %d

Why do I get -1 when I print the following? unsigned long long int largestIntegerInC = 18446744073709551615LL; printf ("largestIntegerInC = %d\n", largestIntegerInC); I know I should use llu ...
37
votes
5answers
41k views

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. Now, in Java longs are 64 bits, I know. However, they are signed. Is there an unsigned ...