与负数进行比较时,为什么会出现sizeof运算符?
这里到底发生了什么?输出现在为“False”:
#include <stdio.h>int main(){
if (sizeof(int) > any_negative_integer)
printf("True");
else
printf("False");
return 0;}如果我将其更改为:
if (sizeof(int) < any_negative_integer)
输出为“True”。
慕桂英3389331
大话西游666
相关分类