unsigned int and signed char comparison

荒凉一梦 提交于 2019-11-26 06:46:28

问题


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\") : printf(\"g\");
  return 0;
}

I was expecting the o/p to be \"g\". Instead, its \"s\". What kind of conversion is done here?


回答1:


Section 6.3.1.8, Usual arithmetic conversions, of C99 details implicit integer conversions.

If both operands have the same type, then no further conversion is needed.

That doesn't count since they're different types.

Otherwise, if both operands have signed integer types or both have unsigned integer types, the operand with the type of lesser integer conversion rank is converted to the type of the operand with greater rank.

That doesn't count since one is signed, the other unsigned.

Otherwise, if the operand that has unsigned integer type has rank greater or equal to the rank of the type of the other operand, then the operand with signed integer type is converted to the type of the operand with unsigned integer type.

Bingo. x has a higher rank than y so y is promoted to unsigned int. That means that it morphs from -1 into UINT_MAX, substantially larger than 9.

The rest of the rules don't apply since we have found our match but I'll include them for completeness:

Otherwise, if the type of the operand with signed integer type can represent all of the values of the type of the operand with unsigned integer type, then the operand with unsigned integer type is converted to the type of the operand with signed integer type.

Otherwise, both operands are converted to the unsigned integer type corresponding to the type of the operand with signed integer type.


The ranks relevant to this question are shown below. All ranks are detailed in C99, section 6.3.1.1, Boolean, character, and integers so you can refer to that for further details.

The rank of long long int shall be greater than the rank of long int, which shall be greater than the rank of int, which shall be greater than the rank of short int, which shall be greater than the rank of signed char.

The rank of char shall equal the rank of signed char and unsigned char.




回答2:


My guess is y is promoted to unsigned int which becomes a big value (due to wrapping). Hence the condition is satisfied.




回答3:


Ran the following code:

int main(){
  unsigned int x = 9;
  signed char y = -1;
  printf("%u\n", (unsigned int)y);
  x < (unsigned int)y ? printf("s") : printf("g");
  return 0;
}

The output is:

4294967295
s

After a casting, y takes a very large value. That is why output is s.




回答4:


The char is promoted to unsigned int, with a value of MAX_UINT, which is greater than 9.




回答5:


Refer to the comment by by caf in link below : When you convert an out-of-range number to an unsigned type, it is brought into range by repeatedly adding or subtracting one more than the maximum value of the type -

C : Convert signed to unsigned

In this case, UINT_MAX + 1, which is 4294967296 on your platform, is added to -1 to give 4294967295.



来源:https://stackoverflow.com/questions/5087992/unsigned-int-and-signed-char-comparison

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!