疑难错误之结果类型转换
unsigned int nslot = 1; printf("%d\n", 0 < nslot -2);
以上输出结果是多少呢?
在linux上编译之后,输出结果为1. 原因是nslot为unsgined int, 2 为常数,输出结果类型也为unsgined int。
unsigned int nslot = 1; printf("%d\n", 0 < nslot -2);
以上输出结果是多少呢?
在linux上编译之后,输出结果为1. 原因是nslot为unsgined int, 2 为常数,输出结果类型也为unsgined int。