我试图获取今天的天数。喜欢:
int days, seconds;
seconds = Time(0); // Get the number of SECONDS from January, 1º 1970 untill now.
days = seconds / (60 * 60 * 24);
printf("%d", days);
输出为:16326。
但是当我使用一些为您进行转换的网站时,它们会显示6464天。
我做错了什么?
答案 0 :(得分:1)
你是对的。有30 + 14 = 44年,大约16000天。