static unsigned int hello[10];
for(int i = 0; i < 10; i++)
cout<< hello[i]<< " ";
cout<<endl;//输出结果是一串0
int another[10] = {5};
for(int i = 0; i < 10; i++)
cout<< another[i]<< " ";
cout<<endl;//输出5后面跟一串0
int third[10];
for(int i = 0; i < 10; i++)
cout<< third[i]<< " ";
cout<<endl;//输出一串随机值
ULONG a[TOTAL_NUMBER]时若为局部变量,当TOTAL_NUMBER很大时会出错