int main() { int *i,*j; printf("%u",i); }
上述程序将导致输出为0
int main() { int *i,*j; j=i; printf("%u",i); }
但
上述程序将导致非零.为什么?
c
c ×1