Why C compiler cannot do signed/unsigned comparisons in an intuitive way [closed]
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . By "intuitive" I mean given int a = -1; unsigned int b = 3; expression (a < b) should evaluate to 1. There is a number of questions on