struct tm *sysTime; --声明变量sysTime(时间信息)为tm型结构指针
time_t nowTime; --声明变量 nowTime(现在时间) 为time_t型
time_t,tm都是time.h头文件里定义的类型。
这两个类型具体的用法请参考http://blog.csdn.net/luoweifu/article/details/20288549