OK_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.    if (*str)
  6.      return(1 + string_length(str+1));
  7.    else
  8.      return(0);
  9.  }
  10. void main(void)
  11.  {
  12.    long int counter;
  13.    time_t start_time, end_time;
  14.    time(&start_time);
  15.    for (counter = 0; counter < 100000L; counter++)
  16.      string_length("Jamsa's 1001 C/C++ Tips");
  17.      
  18.    time(&end_time);
  19.    printf("Processing time %dn", end_time - start_time);
  20.  }