What does signed and unsigned values mean?

后端 未结 9 866
旧巷少年郎
旧巷少年郎 2020-12-14 02:28

What does signed mean in C? I have this table to show:

\"enter

Th

9条回答
  •  再見小時候
    2020-12-14 03:31

    Nobody mentioned this, but range of int in table is wrong: it is

    -2^(31) to 2^(31)-1
    

    i.e.,

    -2,147,483,648 to 2,147,483,647
    

提交回复
热议问题