ページ 11

複数のtxtファイルやcsvファイルを比較したいのですが。

Posted: 2009年1月13日(火) 08:05
by こ~ふぃ
#include <time.h>
main(){
....

clock_t start,end;
start = clock();

..../*ここに測定したい処理を入れる.*/

end = clock();
printf("%.2f秒かかりました\n",(double)(end-start)/CLOCKS_PER_SEC);
}

Re:複数のtxtファイルやcsvファイルを比較したいのですが。

Posted: 2009年1月13日(火) 08:07
by こ~ふぃ
また立て直します。
すいません。
意図と違うものが出ます。