摘要:
1 #include <stdio.h> 2 int main(void) 3 { 4 int i,o,p,h; 5 printf("%d\n",i); 6 printf("%d\n",o); 7 printf("%d\n",p); 8 printf("%d\n",h); 9 getch();10 return 0;11 }对于未初始化的变量,输出的是一个随即数,如下图:1 编译器: Default compiler2 执行 gcc.exe...3 gcc.exe "D:\Documents\ 阅读全文