NO_RECUR.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <time.h>
  3. int string_length(const char *str)
  4.  {
  5.    int length = 0;
  6.    
  7.    while (*str++)
  8.      length++;
  9.    return(length);
  10.  }
  11. void main(void)
  12.  {
  13.    long int counter;
  14.    time_t start_time, end_time;
  15.    time(&start_time);
  16.    for (counter = 0; counter < 100000L; counter++)
  17.      string_length("Jamsa's 1001 C/C++ Tips");
  18.      
  19.    time(&end_time);
  20.    printf("Processing time %dn", end_time - start_time);
  21.  }