cbrt, cbrtf, cbrtl헤더 파일[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - math.h double cbrt(double x); 삼제곱근float cbrtf(float x); 삼제곱근long double cbrtl(long double x); 삼제곱근 입력 매개 변수 리스트x 실수반환 값x의 삼제곱근 사용 예//C언어 표준 라이브러리 함수 가이드//double cbrt(double x); 삼제곱근//float cbrtf(float x); 삼제곱근//long double cbrtl(long double x); 삼제곱근 #include #include int main(void){ printf("%f\n", cbrt(1.0)); printf("%f\n", cbrt(8.0)); prin..