【C/C++时间系列】通过clock()函数获取程序执行时间

【clock()】

函数原型定义在time.h中,如下

程序到目前为止所使用的时间(用户时间+系统时间)。
结果/时钟_秒是程序时间(以秒为单位)

 /* Time used by the program so far (user time + system time).
    The result / CLOCKS_PER_SECOND is program time in seconds.  */
 extern clock_t clock (void) __THROW;

代码示例:

#include 
#include 
using namespace std;
int main()
{
   clock_t  begin ,end;
   begin=clock();
   for(int i=0;i<10000;i++)
   {
       for(int j=0;j<10000;j++)
       {}
   }
   end=clock();
   cout<<"sizeof(clock_t) is:"<

你可能感兴趣的:(C/C++时间系列)