In this sample:
long long int x = 1<<38;
NSLog(@"Hello, World!, %qi", x);
I got "warning: left shift count >= width of type", and the value zero for x.
The length of a long long int is 8, so we should be able to shift up 63.
I'se puzzled....And would sho' 'preciate some help.