## C 언어 pow 함수로 거듭제곱 계산하기

C 언어에서는 pow 함수를 사용하여 거듭제곱을 계산할 수 있습니다. pow 함수는 math.h 헤더 파일에 정의되어 있으며, 다음과 같이 사용할 수 있습니다.

#include <stdio.h>
#include <math.h>

int main(void) 
{
    double base = 2.0, exponent = 3.0, result;

    result = pow(base, exponent);
    printf("%.1f의 %.1f 거듭제곱은 %.2f입니다.\n", base, exponent, result);

    return 0;
}
2.0의 3.0 거듭제곱은 8.00입니다.

위 코드를 실행하면, 2.0의 3.0 제곱의 결과인 8.00이 출력됩니다.

 

Comments


Comments are closed