Views 7392 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

시간 날짜, 요일 출력 초간단 예제 코드

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
    time_t  ltime;
    struct tm *today;
    int daysofmonth[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
    char weekstr[][3] = { "일", "월", "화", "수", "목", "금", "토" };
    int year, month, day, month2, th, rmd, adayofweek, OldSec=0;

    while(1){
        time(<ime);
        today = localtime(<ime);

        year = today->tm_year + 1900;
        month = today->tm_mon + 1;
        day = today->tm_mday;

        if (month<=2) {
            rmd = year-1;
            month2 = month+12;
        }
        else {
            rmd = year;
            month2 = month;
        }
        th = rmd/100;
        rmd %= 100;
        adayofweek = (21*th/4 + 5*rmd/4 + 26*(month2+1)/10 + day-1) % 7;

        if ( OldSec != today->tm_sec )
        {
            system("cls");
            printf("%04d. %02d. %02d. (%s) %02d:%02d:%02d KST
",
                // tm_year는 1900을 더해야 서기 연도가 됨
                today->tm_year + 1900,

                // tm_mon은 1월이 0, 2월이 1... 식으로 되어 있음
                today->tm_mon + 1,
                today->tm_mday,
                weekstr[adayofweek],
                today->tm_hour,
                today->tm_min,
                today->tm_sec);
                OldSec = today->tm_sec;
        }
    }
    return 0;
}

?

List of Articles
No. Category Subject Author Date Views
389 System/OS [linux] ipchains 사용예(패킷 필터링) hooni 2003.04.23 14171
388 System/OS [linux] ipchains 옵션 hooni 2003.04.23 13611
387 System/OS [linux] ipfwadm를 이용한 패킷필터링(구버전) hooni 2003.04.23 13015
386 System/OS [linux] iptables 명령어 매뉴얼(options) hooni 2003.04.23 11335
385 System/OS [linux] iptables 초간단 세팅 스크립트 hooni 2017.09.26 1237
384 System/OS [linux] man 명령어 뽀개기.. hooni 2003.04.23 8723
383 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 47936
382 System/OS [linux] Oracle8.1.6, Mysql+PHP+Zend Optimizer+APACHE+Tomcat(jsp,servlet)+IMAP+gd hooni 2003.04.23 32452
381 System/OS [linux] Proftpd 설치 가이드 hooni 2003.04.23 13021
380 System/OS [linux] ProFTPD 타임아웃 설정 hooni 2003.04.23 12851
379 System/OS [linux] resolv.con 초기화 되는 문제 hooni 2014.04.05 4616
378 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12685
377 System/OS [linux] root도 삭제하지 못하는 파일 속성 hooni 2003.04.23 12412
376 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14570
375 System/OS [linux] split 명령어 hooni 2014.03.11 4305
374 System/OS [linux] SSH에 대한 기본 설명과 설치/설정 hooni 2013.04.23 10493
Board Pagination Prev 1 ... 48 49 50 51 52 ... 74 Next
/ 74