当前位置: 技术问答>linux和unix
急!linux unix C上毫秒乃至微妙级别的回调函数的方法有么?
来源: 互联网 发布时间:2015-11-13
本文导语: rt | struct tm *tt; tt = localtime(&t_of_day); year = tt->tm_year; month = tt->tm_mon; min = tt->tm_min; sec = tt->tm_sec; printf("%d %d %d %d",year,month,min,sec); 这样应该能符合你的要求吧?自己参考一下吧!
rt
|
struct tm *tt;
tt = localtime(&t_of_day);
year = tt->tm_year;
month = tt->tm_mon;
min = tt->tm_min;
sec = tt->tm_sec;
printf("%d %d %d %d",year,month,min,sec);
这样应该能符合你的要求吧?自己参考一下吧!
tt = localtime(&t_of_day);
year = tt->tm_year;
month = tt->tm_mon;
min = tt->tm_min;
sec = tt->tm_sec;
printf("%d %d %d %d",year,month,min,sec);
这样应该能符合你的要求吧?自己参考一下吧!