Tag: time t

什么原始数据types是time_t?

我不知道time_t的数据types。 这是一个浮动双或其他东西? 因为如果我想显示它,我需要与printf相对应的标签。 我可以从那里处理其余的显示time_t但我需要知道与之相对应的数据types。

获取C中的当前时间

我想获得我系统的当前时间。 为此,我在C中使用下面的代码: time_t now; struct tm *mytime = localtime(&now); if ( strftime(buffer, sizeof buffer, "%X", mytime) ) { printf("time1 = \"%s\"\n", buffer); } 问题是这个代码给了一些随机的时间。 而且,随机时间每次都是不同的。 我想要我的系统的当前时间。