qualcuno sa come si fa ad azzerare clock()
ho scritto questo codice



-------------------------------------
#include <time.h>
#include <stdio.h>
#include<stdlib.h>
#include <windows.h>



int main()
{

int x;
x=1;
for(x;x!=10;x=x)
{

x=clock() /CLOCKS_PER_SEC;
printf("%d",x);
stop = clock() /CLOCKS_PER_SEC;}

//QUI VORREI AZZERARE IL CLOCK PER FARLO RIPARTIRE DA 0

x=0;

for(x;x!=10;x=x)
{
x=clock() /CLOCKS_PER_SEC;
printf("%d",x);}}




--------------------------------








qualcuno sa come fare??