[C언어 소스] difftime 함수 사용 예제 코드 //C언어 표준 라이브러리 함수 가이드//double difftime(time_t time1, time_t time2); 초단위 시간의 차이를 구하는 함수//지역 시각과 GMT 시각 차이를 구하기#include #include int main(void){ struct tm gmt, localt; time_t now_time,gm_time; char buf[256]; time(&now_time); //현재 초 단위 시간을 측정 localtime_s(&localt, &now_time);//지역 시각을 구함 gmtime_s(&gmt, &now_time);//GMT 시각을 구함 gm_time = mktime(&gmt);//GMT 시각을 초 단위 시간을 구함 ..