私は Web で検索しましたが、それを行う方法しか見つけられませんでしたが、この方法ではミリ秒ではなく秒単位で返されます。
私のコードは次のとおりです。
#include <stdio.h>
#include <assert.h>
#include <time.h>
int main(void)
{
int solucion;
time_t start, stop;
clock_t ticks;
long count;
time(&start);
solucion = divisores_it(92000000, 2);
time(&stop);
printf("Finnished in %f seconds. \n", difftime(stop, start));
return 0;
}