unsigned__int64 difference;
difference=(64*33554432);
printf ("size %I64u \n", difference);
difference=(63*33554432);
printf ("size %I64u \n", difference);
the first # is ridiculously large. The second number is the correct answer. How does changing it from 62 to 63 cause such a change?
First value is 18446744071562067968 Second value is 2113929216
Sorry the values were 64 and 63, not 63 and 62.
difference3). – Oli Charlesworth Apr 11 '11 at 22:54unsigned__int64. You're using an implementation-specific extension, or a library. State your platform. – Lightness Races in Orbit Apr 11 '11 at 23:39