// Last edited on 2023-05-30 02:07:49 by stolfi #include #include #include int main (void) { uint64_t u64 = 2; int32_t i32 = -1; if (i32 < u64) { fprintf(stderr, "thinks -1 < 2LU\n"); } else { fprintf(stderr, "thinks -1 > 2LU\n"); } int64_t i64 = -1; if (i64 < u64) { fprintf(stderr, "thinks -1L < 2LU\n"); } else { fprintf(stderr, "thinks -1L > 2LU\n"); } return 0; }