#include <time.h>
#include <iostream>
int main()
{
strunct tm *ptr;
time_t t;
time(t);
ptr = locatime(&t);
cout << asctime(ptr);
return 0;
} 上面代码中的struct tm *ptr 中的tm是怎样的一个结构体,这个结构体是编辑器自带的吗?我在资料上的代码里面看到此结构体根本就没有定义就直接用了,如果此结构体是已经定义好的为什么 ,在定义ptr指针的时候前面还要带上关键字structne ,有点不明白。请高手指点,谢谢!
慕神8447489
米脂