반응형
#시간 #분 #초 #년월일 #디지털시계 #시간
C언어 소스
#define _CRT_SECURE_NO_WARNINGS // Visual Studio
#include <stdio.h>
#include <time.h>
int main() {
time_t timer;
struct tm* t;
while (1)
{
timer = time(NULL);
t = localtime(&timer);
printf("%d-%02d-%02d\n",
t->tm_year + 1900,
t->tm_mon + 1,
t->tm_mday);
printf("%02d:%02d:%02d\n",
t->tm_hour, t->tm_min, t->tm_sec);
Sleep(1000);
system("cls");
}
//printf("현재 요일: %d\n", t->tm_wday); // 0:일요일
return 0;
}
반응형
'C_C++' 카테고리의 다른 글
(C언어) open: 파일을 연다 (1) | 2023.03.14 |
---|---|
(C언어) Sleep(), Dev C++에서는 Sleep() (0) | 2023.01.04 |
(C언어) 10진수를 8진수로 변환하기 (0) | 2023.01.04 |
(C언어) 10진수를 입력 받아 16진수로 변환하기 (0) | 2023.01.04 |
(C언어) 10진수를 입력 받아 2진수로 변환하기 (1) | 2023.01.04 |