【如何使用C库函数difftime()(代码示例)】C库函数difftime()返回差, 以秒之间起始时间和结束时间。(结束时间开始时间)
//It is present in time.h header file
#include Syntax :
double difftime(time_t time2, time_t time1);
Parameters:
time1 : Lower bound of the time interval
whose length is calculated.
time2 : Higher bound of the time interval
whose length is calculated.Return value :
Returns the difference between time1 and
time2 (as measured in seconds).
//C program to demonstrate working of
//difftime()
#include <
time.h>
#include <
stdio.h>
#include <
unistd.h>
int main()
{
int sec;
time_t time1, time2;
//Current time
time (&
time1);
for (sec = 1;
sec <
= 6;
sec++)
sleep(1);
//time after sleep in loop.
time (&
time2);
printf ( "Difference is%.2f seconds" , difftime (time2, time1));
return 0;
}
输出如下:
Difference is 6.00 seconds
如果发现任何不正确的地方, 或者想分享有关上述主题的更多信息, 请写评论。
推荐阅读
- 哪一种排序算法的内存写操作最少()
- 实现数据仓库有哪些困难()
- 在C#中以降序对数组进行排序的不同方法
- 在C#中创建对象的不同方法有哪些()
- 在Golang中连接两个字符串的不同方法
- 在Golang中比较字符串的不同方法
- 第02讲(Flink 入门程序 WordCount 和 SQL 实现)
- <技术向;修正昨天的爬取教程,并介绍一个插件
- <C语言;售货员问题