Guest User

Jesuino

a guest
Sep 22nd, 2008
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <time.h>                
  3.  
  4. int main(){
  5.                //Vari�veis do tipo clock_t.
  6.                clock_t inicio, fim;
  7.                inicio = clock();
  8.                //Coloque qualquer coisa para medir o tempo.  
  9.               fim = clock();
  10.               printf(�Tempo %f�, (fim - inicio) / (float)CLOCKS_PER_SEC ) ;
  11.               system(�PAUSE�);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment