// Andrew Taylor - andrewt@unsw.edu.au // 18/2/2019 /* - 9007199254740993 is $2^{53} + 1$ \ it is smallest integer which can not be represented exactly as a double - The closest double to 9007199254740993 is 9007199254740992.0 - aside: 9007199254740993 can not be represented by a int32_t \ it can be represented by int64_t */ #include int main(void) { double d = 9007199254740990; while (d < 9007199254741000) { printf("%lf\n",d); d = d + 1; } return 0; }