반응형

C언어 표준 라이브러리 함수 가이드 40

[math.h] tan, tanf, tanl 함수 예제 코드, tangent 계산

[math.h] tan, tanf, tanl 함수 예제 코드, tangent 계산 //C언어 표준 라이브러리 함수 가이드//double tan(double x); tangent 계산//float tanf(float x); tangent 계산//long double tanl(long double x); tangent 계산//0, 30, 45, 60, 90도의 tangent 값 #include #include int main(void){ double radian; radian = 0.0; printf("%f 도\n", radian * 180 / 3.141592); printf("tan(%f) = %.30f\n", radian, tan(radian)); printf("tanf(%f) = %.30f\n", ra..

[math.h] sin, sinf, sinl 함수 예제 코드, sine 계산

[math.h] sin, sinf, sinl 함수 예제 코드, sine 계산 //C언어 표준 라이브러리 함수 가이드//double sin(double x); sine 계산//float sinf(float x); sine 계산//long double sinl(long double x); sine 계산//0, 30, 45, 60, 90도의 sine 값 #include #include int main(void){ double radian; radian = 0.0; printf("%f 도\n", radian * 180 / 3.141592); printf("sin(%f) = %.30f\n", radian, sin(radian)); printf("sinf(%f) = %.30f\n", radian, sinf((flo..

[math.h] cos, cosf, cosl 함수 예제 코드, cosine 계산

[math.h] cos, cosf, cosl 함수 예제 코드, cosine 계산 //C언어 표준 라이브러리 함수 가이드//double cos(double x); cosine 계산//float cosf(float x); cosine 계산//long double cosl(long double x); cosine 계산//0, 30, 45, 60, 90도의 cosine 값 #include #include int main(void){ double radian; radian = 0.0; printf("%f 도\n", radian * 180 / 3.141592); printf("cos(%f) = %.30f\n", radian, cos(radian)); printf("cosf(%f) = %.30f\n", radian,..

[math.h] atan, atanf, atanl 함수 사용 예제 코드, arc tangent 계산

[math.h] atan, atanf, atanl 함수 사용 예제 코드, arc tangent 계산 //C언어 표준 라이브러리 함수 가이드//double atan(double x); arc tangent 계산//float atanf(float x); arc tangent 계산//long double atanl(long double x); arc tangent 계산//0, pi/4, pi/2의 tangent 값과 tangent값의 atangent 값 출력 #include #include int main(void){ double value; value = tan(0.0); printf("tan(%f) = %f\n", 0.0, value); printf("atan(%f) = %.30f\n", value, at..

[math.h] acos, acosf, acosl 함수 사용 예제 코드, arc cosine 계산

[math.h] acos, acosf, acosl 함수 사용 예제 코드, arc cosine 계산 //C언어 표준 라이브러리 함수 가이드//double acos(double x); arc cosine 계산//float acosf(float x); arc cosine 계산//long double acosl(long double x); arc cosine 계산//1.0, 0.5, -0.5, -1.0의 arc cosine 값 출력 #include #include int main(void){ double value=cos(3.14); printf("cosine(%f) = %f\n",3.14, value); printf("arc cosine(%f) = %f\n",value, acos(value)); printf(..

[C언어 소스] strftime 함수 사용 예제 코드, 다양한 포멧으로 현재 시간 출력

[C언어 소스] strftime 함수 사용 예제 코드, 다양한 포멧으로 현재 시간 출력 //C언어 표준 라이브러리 함수 가이드//size_t strftime(char *s, size_t maxsize, const char *format, const struct tm * timeptr); 일시로 포멧 문자열을 만드는 함수//다양한 포멧으로 현재 시간 출력 #include #include #include int main(void){ time_t now; struct tm now_tm; char buf[256]; setlocale(LC_ALL, "Korean");//지역을 한국으로 설정 time(&now); localtime_s(&now_tm, &now); strftime(buf, sizeof(buf), "%..

[C언어 소스] localtime 함수 사용 예제 코드, 초단위 시간으로 지역 일시를 구하는 함수

[C언어 소스] localtime 함수 사용 예제 코드, 초단위 시간으로 지역 일시를 구하는 함수 //C언어 표준 라이브러리 함수 가이드//struct tm *localtime(const time_t *timer); 초단위 시간으로 지역 일시를 구하는 함수//time_t의 지역 기준 시각을 구하고 GMT와의 시각 차이를 구함 #include #include int main(void){ time_t base_time = 0; struct tm *base_date_local; char buf[100]; base_date_local = localtime(&base_time);//초 단위 값을 지역 시각(DateTime)을 구한다. asctime_s(buf, sizeof(buf), base_date_local)..

[C언어 소스] gmtime_s 함수 사용 예제, gmtime 함수의 버퍼 오버플로우 버그 개선

[C언어 소스] gmtime_s 함수 사용 예제, gmtime 함수의 버퍼 오버플로우 버그 개선 //C언어 표준 라이브러리 함수 가이드//errno_t gmtime_s(struct tm *tmp, const time_t *timer); 지역 초 단위 시간으로 GMT 시각으로 변환하는 함수//현재 지역 시각과 GMT 시각을 출력 #include #include int main(void){ struct tm gmt, localt; time_t now_time; char buf[256]; time(&now_time); //현재 초 단위 시간을 측정 localtime_s(&localt, &now_time);//지역 시각을 구함 asctime_s(buf, sizeof(buf), &localt);//지역 시각을 버..

[C언어 소스] gmtime 함수 사용 예제 코드, 지역 초 단위 시간으로 GMT 시각으로 변환하는 함수

[C언어 소스] gmtime 함수 사용 예제 코드 //C언어 표준 라이브러리 함수 가이드//struct tm *gmtime(const time_t *timer); 지역 초 단위 시간으로 GMT 시각으로 변환하는 함수//현재 지역 시각과 GMT 시각을 출력#pragma warning(disable:4996)#include #include int main(void){ struct tm *gmt, localt; time_t now_time; char buf[256]; time(&now_time); //현재 초 단위 시간을 측정 localtime_s(&localt, &now_time);//지역 시각을 구함 asctime_s(buf, sizeof(buf), &localt);//지역 시각을 버퍼에 출력 printf..

[C언어 소스] ctime_s 함수 사용 예제, c_time 함수의 버퍼 오버플로우 버그 개선

ctime_s 함수 사용 예제, c_time 함수의 버퍼 오버플로우 버그 개선 //C언어 표준 라이브러리 함수 가이드//errno_t ctime_s(char *buffer, size_t size, const time_t *timer); 초단위 시간을 문자열로 변환하는 함수//현재 지역 시각과 GMT 시각 출력 #include #include int main(void){ time_t now_time; char buf[256]; time(&now_time); //현재 초 단위 시간을 측정 ctime_s(buf,sizeof(buf),&now_time);//현재시간을 문자열로 변환 printf("현재 시각: %s", buf); return 0;} 출력 현재 시각: Sat Oct 31 08:42:59 2015

반응형