반응형
#include <math.h> double log(double x); double log10(double x); |
log: 자연로그(natural logarithm)값을 구한다.
log10: 상용로그 log 10(x) 값을 구한다.
#include <stdio.h>
#include <math.h>
int main()
{
double x = 8.6;
printf("%f, log : %f\n", x, log(x));
printf("%f, log10: %f\n", x, log10(x));
return 0;
}
반응형
'C_C++ > C_라이브러리_함수' 카테고리의 다른 글
(C언어) memchr: 버퍼에서 지정한 문자를 찾는다 (0) | 2023.02.21 |
---|---|
(C언어) max,min: 두 수 중에서 큰 수 또는 작은 수를 구한다 (0) | 2023.02.20 |
(C언어) lfind: 선형검색(linear search)를 수행한다 (0) | 2023.02.16 |
(C언어) kbhit: 키보드의 키가 눌러졌는지 검사한다 (0) | 2023.02.16 |
(C언어) itoa, ltoa: 정수를 문자열로 변환한다 (0) | 2023.02.16 |