freeseaboy 님의 멋있어 지려 노력하는 블로그
(베이직 코스) 표준 함수 돋보기로 조지기(8) 본문
반응형
자 오늘 -777교시 표준 함수 돋보기로 조지기 시작하려한다.
C 랭귀지이는 표준 함수가 C++보단 적지만 그래도 꽤 존재한다.
그중 일단 초급 코스로 몇가지에 대해 알아 보려고 한다
참고로 회사에서 작성하는 거라 영상은 없다 ㅋ
의미 해석은 코드의 주석을 이용하면 된다!
★ ★ ★위 포스팅 내용은 네X버 Blog 아래 링크에도
똑같이 미러링 되어 있습니다.예비 Blg ★ ★ ★
https://blog.naver.com/iwseo7114
#include <stdio.h>
#include <time.h>
#include <unistd.h>
int main() {
time_t t1, t2;
// Read current time double down
time(&t1);
sleep(2);
time(&t2);
// t1 - t2 operator
double diff = difftime(t2, t1);
printf("Time difference: %.0f seconds\n", diff);
return 0;
}
#include <stdio.h>
#include <time.h>
int main() {
time_t current_time;
// Request real time after 1970.1.1 -> now return seconds
time(¤t_time);
printf("Current time since epoch: %ld seconds\n", current_time);
return 0;
}
#include <stdio.h>
#include <time.h>
#include <stdio.h>
#include <time.h>
int main() {
time_t now;
struct tm *tm_info;
// get current time right now!
time(&now);
// coverting to tm str
tm_info = localtime(&now);
//show current time !!!
printf("Current time: %d-%02d-%02d %02d:%02d:%02d\n",
tm_info->tm_year + 1900,
tm_info->tm_mon + 1,
tm_info->tm_mday,
tm_info->tm_hour,
tm_info->tm_min,
tm_info->tm_sec);
return 0;
}
반응형
'컴퓨터 & 서버 > C++' 카테고리의 다른 글
(베이직 코스)C++ 함수 리턴은 뭐야 ㅋ (0) | 2024.11.23 |
---|---|
(베이직 코스)C++ 함수 인자 뭐냐 이건 ㅋ (0) | 2024.11.22 |
(베이직 코스)C++ 초급 함수 어려워여 ㅠ (0) | 2024.11.17 |
(베이직 코스)C++ 초급 배열 어려워여 ㅠ (23) | 2024.11.16 |
(베이직 코스)C++ 초급++ Iter 좀볼까? (0) | 2024.11.14 |