[求助]为什么不能通过呢?
#include<time.h>main()
{
struct tm *ptr;
time_t lt;
char str[80];
lt=time(0);
ptr=localtime(<);
strftime(str,70,"the now time is:%F %T",ptr);
printf(str);
system("pause");
}
TC里提示:"_strftime"没有定义.怎么回事?
2007-10-04 10:40
2007-10-04 10:56
2007-10-04 20:15
2007-10-05 19:12