I am trying to compare an unsigned int with a signed char like this:
int main(){ unsigned int x = 9; signed char y = -1; x < y ? printf(\"s\") : pri
The char is promoted to unsigned int, with a value of MAX_UINT, which is greater than 9.