如何使用time.h获得日期
就是怎么分别获得年月日呢,最好是int的
#include <stdio.h>
#include <time.h>
main()
{
time_t now;
now = time((time_t *)NULL);
printf("%s", ctime(&now)); /*ctime()函数的作用是将time_t形式的now转换成ASCII形式*/
time(&now);/*time()函数的作用是将当前时间给now,now为time-t形式*/
printf("%s", ctime(&now));
{
struct tm *l_time;
l_time = localtime(&now);
printf("%s", asctime(l_time));
}
time(&now);
printf("%s", asctime(localtime( &now )));
{
struct tm *l_time;
char string[20];
time(&now);
l_time = localtime(&now);/*localtime()函数作用是将struct tm结构形式的now转换成ASCII形式*/
strftime(string, sizeof string, "%d-%b-%y\n", l_time);
printf("%s", string);
}
}
正好一个实例 看看吧