반응형

C 언어, 현재 날짜 시간 출력

 

#include <stdio.h>
#include <time.h>

 

int main(void)
{
   time_t now;   // time_t --> long long

   time(&now);
   printf("현재 날짜/시간: %s\n", asctime(localtime(&now))); 
   printf("현재 날짜/시간: %s\n", ctime(&now));

   return 0;
}

 

 

 

 

<이상>

 

반응형

+ Recent posts