2013年8月18日 星期日

[Linux C]-Linux C 抓取目前系統時間,並顯示

[Linux C]-Linux C 抓取目前系統時間,並顯示



本篇要分享Linux C 抓取目前系統時間,並顯示的相關範例,歡迎有興趣的同好,一起來(C/P)一下。









#include <stdio.h>
#include <time.h>
int main(void)
{

time_t t = time(NULL);
struct
tm tm = *localtime(&t);

printf("now: %d-%d-%d %d:%d:%d\n", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
}


 


 


 


沒有留言:

張貼留言