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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <conio.h>
  3. #include <time.h>
  4. void main(void)
  5.  {
  6.    int count;
  7.    time_t start_time, stop_time;
  8.    
  9.    time(&start_time);
  10.    for (count = 0; count < 1001; count++)
  11.      printf("Jamsa's 1001 C/C++ Tipsn");
  12.    time(&stop_time);
  13.    printf("nnTime required for printf %d secondsn", 
  14.      stop_time-start_time);
  15.    printf("Press any key...n");
  16.    getch();
  17.    time(&start_time);
  18.    for (count = 0; count < 1001; count++)
  19.      cprintf("Jamsa's 1001 C/C++ Tipsrn");
  20.    
  21.    time(&stop_time);
  22.    printf("nnTime required for cprintf %d secondsn", 
  23.      stop_time-start_time);
  24.  }