long long int
long long int
- Subject: long long int
- From: "Gerriet M. Denkmann" <email@hidden>
- Date: Sun, 20 Jan 2002 18:19:46 +0100
unsigned long long ul64 = 0x12312345678ULL ;
unsigned long ul32 = 0x87654321UL ;
NSLog(@"\nul64 %#-13x ul32 %#10x", ul64, ul32);
printf("ul64 %#-13Lx ul32 %#10lx\n", ul64, ul32);
both return: ul64 0x123 ul32 0x12345678
should return: ul64 0x12312345678 ul32 0x87654321
What is the prefered work-around for this bug or feature?
Gerriet.