현재 시간을 연속적으로 출력(kbhit, localtime)
kbhit() 은 입력된 키가 있으면 0이 아닌 값을, 입력된 키가 없으면 0을 반환
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <conio.h>
int main(void)
{
time_t now;
struct tm *d;
while(!kbhit())
{
system("cls");
now=time(NULL);
d=localtime(&now);
printf("현재 날짜와 시간 : %s\n", asctime(d));
}
return 0;
}
// 실행 결과
kbhit() 은 입력된 키가 있으면 0이 아닌 값을, 입력된 키가 없으면 0을 반환
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <conio.h>
int main(void)
{
time_t now;
struct tm *d;
while(!kbhit())
{
system("cls");
now=time(NULL);
d=localtime(&now);
printf("현재 날짜와 시간 : %s\n", asctime(d));
}
return 0;
}
// 실행 결과
'공부 > c언어' 카테고리의 다른 글
[c언어] 0부터 1사이의 실수 난수를 출력(rand) (0) | 2011.05.25 |
---|---|
[c언어] 로또 당첨번호 생성. 1부터 45사이의 정수 난수를 출력(rand, srand) (3) | 2011.05.25 |
[c언어] 시간을 지연하는 함수와 프로그램 (Sleep) (0) | 2011.05.24 |
[c언어] 시간 차이의 계산. 소요시간을 계산 (0) | 2011.05.24 |
[c언어] 날짜와 시간에 대해 구조체 멤버별로 구분하여 출력 (1) | 2011.05.24 |