The long-long tag has no wiki summary.
34
votes
14answers
59k 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 ...
5
votes
2answers
68 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 ...
4
votes
4answers
831 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
3answers
299 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
136 views
Casting to long long (GCC)
long long x; double n;
x=long long(n);
This doesn't work. What is the correct way?
3
votes
1answer
110 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 ...
2
votes
4answers
145 views
Pi in C++ and problems
#include < iostream >
using namespace std;
#define n 3000
#define len (10*n/3)
main(void)
{
unsigned long i, j, nines = 0, predigit = 0, pi[len + 1], c = -1;
unsigned long long A[len + ...
2
votes
3answers
148 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 ...
1
vote
3answers
2k 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 ...
1
vote
5answers
521 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?
0
votes
4answers
70 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
52 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
0
votes
1answer
100 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 ...
0
votes
4answers
185 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.
0
votes
4answers
242 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 ...
-1
votes
3answers
99 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 ...