#include<stdio.h>
#include<
time.h>
int main()
{
time_t t;
time(&t);
printf("%ld\n",t);
return 0;
}
說明一下
time_t 在定義的時候是 typedef long time_t;
當然要用ld來輸出
這個長度是從1700年元旦到現在經過的秒數!
這個可以計算#include<stdio.h>
#include<
time.h>
#define D (24*60*60)
#define H (60*60)
#define M (60)
int main()
{
time_t t;
time(&t);
long time=t%D;
int h=time/H;
time=time%H;
int m=time/M;
time=time%M;
int s=time;
printf("time is %02d:%02d:%02d\n",h,m,s);
return 0;
}
得到的結果是國際標准時 由於中國處在東8區 有8個小時的時差
