#include<stdio.h>
#include<time.h>
void main()
{
struct tm *t;
time_t timer; // 시간측정
timer = time(NULL); // 현재 시각을 초 단위로 얻기
t = localtime(&timer); // 초 단위의 시간을 분리하여 구조체에 넣기
printf("현재 시간은 ");
printf("%d년 %d월 %d일 %d시 %d분 %d초입니다.\n",
t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
}
'Programming > C & C++' 카테고리의 다른 글
[C++] different underlying type in enum 'enum class TypeName' (0) | 2019.06.14 |
---|---|
[C++] Inheritance: 'A' is an inaccessible base of 'B' (0) | 2019.06.12 |
Const char* vs char* const (0) | 2014.12.24 |
WindowsAPI C언어에서 파일 목록 가져오기 (0) | 2014.11.19 |
C++ SDL 콘솔창 숨기는법 (0) | 2012.08.23 |
C++ STL vector sort 정렬함수 (0) | 2012.08.18 |
C++ sstream( sscanf, 문자열스트림 ) (0) | 2012.08.18 |
__imp__WSACleanup@0 외부 기호(참조 위치: _main 함수)에서 확인하지 못했습니다 (0) | 2012.08.17 |