我有以下内容:
#define DATE_AND_TIME_FORMAT "%Y-%m-%d %H:%M:%S"
#define DATE_AND_TIME_SIZE 25
char buffer[DATE_AND_TIME_SIZE];
static char *get_date_and_time (char *buffer)
{
time_t t = time (0);
strftime (buffer, DATE_AND_TIME_SIZE, DATE_AND_TIME_FORMAT, localtime (&t));
return buffer;
}
你们中的任何人都可以告诉我如何获得包含毫秒“fff”的时间格式(根据 MSDN Microsoft)吗?