On Sun, Oct 25, 2009 at 5:55 PM, David Cleaver wrote:
> Hello,
>
> I'm having problems printing out values that are larger than 32 bits. My
> usual
> printf using %llu only outputs the lower 32 bits of my 64-bit numbers.
>
> Here's an example program that produces incorrect output.
>
> #include
Hello David,
2009/10/25 David Cleaver :
> Hello,
>
> I'm having problems printing out values that are larger than 32 bits. My
> usual
> printf using %llu only outputs the lower 32 bits of my 64-bit numbers.
>
> Here's an example program that produces incorrect output.
>
> #include
>
> typedef u
Hello,
I'm having problems printing out values that are larger than 32 bits. My usual
printf using %llu only outputs the lower 32 bits of my 64-bit numbers.
Here's an example program that produces incorrect output.
#include
typedef unsigned long long u64_t;
int main(int argc, char* argv[])