1. static变量初始化
在C中,由static修饰的静态变量在没有显式初始化时,将会被初始化为0(对于指针是NULL)
参考:https://en.wikipedia.org/wiki/Uninitialized_variable
时间:2018-10-17
2.
3.
4.