LARGE_INTEGER frequency, count1, count2; int timinmicrosec; QueryPerformanceFrequency(&frequency);
QueryPerformanceCounter(&count1);
실행 ~~~~~~~
QueryPerformanceCounter(&count2);
timinmicrosec = (count2.QuadPart - count1.QuadPart)*1000*1000/frequency.QuadPart; printf("\t 경과시간 : %f sec\n", timinmicrosec/1.e6);
Posted by chungki


