C语言中signed和unsigned类型说明符
001、signed既可以表示整数也可以表示负数, 若不指定默认为signed; unsigned表示只可以表示0和正数。
signed 表示有符号的;
unsigned表示无符号的;
C语言中各种数据类型可以存储的值的范围可以通过一下方式进行输出:
[root@localhost test]# ls test.c [root@localhost test]# cat test.c ## 测试程序, 以char类型为例 #include <stdio.h> #include <limits.h> int main(void) { printf("char: %d~%d\n", CHAR_MIN, CHAR_MAX); printf("signed chahr: %d~%d\n", SCHAR_MIN, SCHAR_MAX); return 0; } [root@localhost test]# gcc test.c -o kkk ## 编译 [root@localhost test]# ls kkk test.c [root@localhost test]# ./kkk ## 运算 char: -128~127 signed chahr: -128~127
。