[求助]为什么不能通过呢?
#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"没有定义.怎么回事?
TC里
TC里不支持这个文件.
我刚才查了一下,在win_tc的include文件的time.h中找不到strftime的定义.
我也没找到!