#include <time.h> #include <stdio.h> int main() { time_t the_time; (void)time(&the_time); printf("The date is: %s",ctime(&the_time)); return 0; }
函数原型:
#include <time.h>
char *ctime(const time_t *timeval);
注:上一篇获得的时间是标准格林威治时间。
#include <time.h> #include <stdio.h> int main() { time_t the_time; (void)time(&the_time); printf("The date is: %s",ctime(&the_time)); return 0; }
函数原型:
#include <time.h>
char *ctime(const time_t *timeval);
注:上一篇获得的时间是标准格林威治时间。
转载于:https://www.cnblogs.com/tiandsp/archive/2012/09/09/2677455.html
道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。