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

int main(){
	clock_t ti[3];
	ti[0] = clock();
	printf("1回目時刻 %d\n", ti[0]);
	ti[1] = clock();
	printf("2回目時刻 %d\n", ti[1]);
	ti[2] = clock();
	printf("3回目時刻 %d\n", ti[2]);
	printf("1回目と2回目の時間差 %d\n", ti[1]-ti[0]);
	printf("1回目と3回目の時間差 %d\n", ti[2]-ti[0]);
	printf("size = %d\n", sizeof(clock_t));
}
