hello,
i'm trying to to get the time of my sorting function in seconds, and i always get ZERO time.
here is what i'm using:
clock_t t1,t2;
t1=clock();
clock_t IT
I.insertion(A,200000);
t2=clock();
IT=((t2-t1)/ CLK_TCK)*10000000000000000000;
i print the IT and get ZERO.
can someone help me with that issue?