代码:#包括<stdio.h>
int main()
{
int x;
printf("%dn",x);
if(x>10)
x-=10;
else if(x>=0)
x+=00;
else if(x)
x+=10;
else
x-=10;
printf("%dn",x);
return 0;
}
为什么x的初始值为零?c中int、float、double、char类型数据的默认值是什么。在这个程序中,x由默认值或垃圾值指定。
C中没有默认值。如果变量未初始化,它将具有随机值。在你的情况下,它看起来是0,但它可以是任何东西。