Code: Select all
typedef unsigned long long int UInt64;
..............
if(Result >= UInt64(0xfffffffffffffff)/((j - 1)*z + i))
Could anyone explain me it?03879793_24.c:53: integer constant out of range
Moderator: Board moderators
Code: Select all
typedef unsigned long long int UInt64;
..............
if(Result >= UInt64(0xfffffffffffffff)/((j - 1)*z + i))
Could anyone explain me it?03879793_24.c:53: integer constant out of range
What is "LL"?Larry wrote:Use "LL".
Code: Select all
typedef unsigned long long UInt64;
..............
if(Result >= UInt64(0xfffffffffffffff)/((j - 1)*z + i))