The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
79 views

Convert long long to string in C?

I'd like to convert a long long to a string in C. long long x = 999; I'd like to convert x to a string. How could I go about doing that? Thanks.
2
votes
3answers
118 views

Objective-C NSNumber numberWithLongLong creates integer

When I attempt to create an NSNumber using the numberWithLongLong with a number greater than -2 and less than 13 it returns a number that is casted as an (int). I see this if I look at the Xcode ...
19
votes
4answers
516 views

How to check if A+B exceed long long? (both A and B is long long) [duplicate]

I have 2 numbers: A and B. I need to calculate A+B somewhere in my code. Both A and B are long long, and can be positive or negative. My code runs wrong, and I suspect the problem happens when ...
0
votes
2answers
55 views

bitwise operations on 64-bit data type (long long) in C?

Here is some code. long long bitmap2 = 1; printf("%d\n", bitmap2 & 1); The output is 0, but I am expecting 1. How can I fix this? (I have tried 1LL instead of 1 and uint64_t instead of long ...
3
votes
1answer
131 views

Troubling converting string to long long in C

I'm having trouble getting the atoll function to properly set a long long value in c. Here is my example: #include <stdio.h> int main(void) { char s[30] = { "115" }; long long t = ...
0
votes
1answer
50 views

Convert to long long, pros and cons in C

I want to accelerate my algorithm using long long instead of double data type. My algorithm is to find the shortest path in a directed acyclic graph (DAG). Simply, it adds the weight of an edge "E: ...
0
votes
1answer
73 views

C - How to actually use a long long datatype with the ctime function

I tried asking this before but I forgot to include a question (since I just joined the site), so I didn't actually have my problem solved, people just told me why the second bit of code was wrong ...
9
votes
2answers
720 views

Should I use long long or int64_t for portable code?

I have an open-source codebase that is written in both C and C++. I'm looking for an integer type that is guaranteed to be at least 64 bits wide, which can be reliably compiled on most OS X (Intel, ...
1
vote
2answers
193 views

64-bit G++ 4.6.3 doesn't treat longs as long longs in specialised function templates, even though they're the same size. Is this a bug?

Consider the following code: #include <iostream> #include <cinttypes> template<class T> void f(); template<> inline void f<long long>() { ...
0
votes
3answers
295 views

Getting iPhone unique id as long long value

I'm new to Iphone developing. I have next problem: I need to get unique id for every iPhone that runs my application. I found this great project on github: ...
2
votes
4answers
315 views

How can I convert from LONGLONG to class _variant_t?

In this example m_Amount is CString. stringToNumber function converts it to a LONGLONG number successfully. But when I want to assign it to a variant I get this error: error C2440: 'type cast' : ...
0
votes
1answer
79 views

Validation of long long Int in C behaving unusually

I am writing an MPI program in which rank 0 reads parameters from a file and broadcasts the parameters on all the other ranks using MPI_BCAST. I am trying to validate if the long long integers ...
0
votes
1answer
84 views

How can I work around datatype size limitations?

I have a game on the App Store and I'm getting reports that scores are in accurate and incorrectly reported. I'm using long long for just about all my math. Unfortunately, at about two billion, my ...
1
vote
2answers
179 views

assigning a value to a long long integers using gcc on sparc solaris

I came across something that I think rather strange. The test program int main(int argc, char* argv[]) { cout<<"hello"<<endl; long unsigned l = 0x12345678; long long unsigned ...
0
votes
4answers
189 views

long long int arithmetics

I have the following in C: long long int a; long long int b; long long int c; long long int d=a*b/c; However, I want 'd' to be double. Is there a way I can multiply, divide long long int and get a ...
0
votes
1answer
120 views

Parse a string as a (long long) integer

I am writing a code in which I need to parse a string to a "long long int" I used to use atoi when changing from string to int, I dont think it still work. What Can I use now? --Thanks
5
votes
2answers
313 views

cpp: eclipse doesn't recognize 'long long' type

I have some where in my code the next line: long long maxCPUTime=4294967296; (the largest number long type can be is 4294967296 -1 , so I used long long) the problem is, when I compile ,I get ...
0
votes
1answer
226 views

Long Long, decimals and input validation in C

Currently I'm using TCC as it's the easiest thing to get setup on windows. Simply unzip and you're ready to go. However I'm open to other compilers, GCC, whatever microsoft has on offer etc. My ...
1
vote
4answers
1k views

How to cross-platform converting char* to long long (64-bit)?

How can I convert a char* string to long long (64-bit) integer? I use MSVC and GCC compilers and my platforms are Windows, Linux and MAC OS. Thanks.
-1
votes
3answers
1k views

long and long long bit-length

Just out of curiosity, why do C compilers specify long to be 32-bit (same as int) and long long to be 64-bit. Wouldn't it have made more sense to make long 64-bit and reserve long long until 128-bit ...
2
votes
3answers
405 views

Pointer conversion to long porting issue in 64 bit env

I'm porting an application from 32 bit to 64 bit. It is C style coding (legacy product) although it is C++. I have an issue where a combination of union and struct are used to store values. Here a ...
3
votes
3answers
1k views

grabbing upper 4 bytes of a 8 byte word

I am multiplying 0x1d400 * 0xE070381D. When I do this on my calculator the result is 0x00019A4D26950400 When I tried implementing this in cpp here's what i have. long long d; d = 3765450781 * ...
3
votes
3answers
486 views

Casting to long long (GCC)

long long x; double n; x=long long(n); This doesn't work. What is the correct way?
7
votes
3answers
7k views

sprintf for unsigned _int64

I am having following code. output of second %d in sprintf is always shown as zero. I think i am specifying wrong specifiers. Can any one help me in getting write string with right values. And this ...
0
votes
4answers
701 views

Returning a long long value

#include <stdio.h> int main(void) { long long x = test(); printf("%lld\n", x); return 1; } long long test() { return 1111111111111111111; } The output is 734294471 . If ...
4
votes
4answers
3k views

long long vs int multiplication

Given the following snippet: #include <stdio.h> typedef signed long long int64; typedef signed int int32; typedef signed char int8; int main() { printf("%i\n", sizeof(int8)); ...
3
votes
1answer
219 views

Is it possible to add -pedantic to GCC command line, yet have it not warn about 'long long'

I'm using mostly GCC to develop my library, but I'd like to ensure cross-compiler compatibility and especially standard conformance as much as possible. For this, I have add several -W... flags to ...
1
vote
6answers
3k views

What kind of data type is “long long”?

I don't know this type. Is that the biggest one from all? I think it is an integer type, right? Or is it a floating point thing? Bigger than double?
71
votes
8answers
138k views

How do you printf an unsigned long long int?

#include <stdio.h>int main() { unsigned long long int num = 285212672; //FYI: fits in 29 bits int normalInt = 5; printf("My number is %d bytes wide and its value is %ul. A normal number ...