C++
시간 측정 함수
sukay
2011. 10. 28. 05:54
clock_t start = clock();
clock_t end = clock();
cout << "처리 시간 : " << end - start << " 밀리세컨드" << endl;