안녕하세요?

 

C언어 안에서 루트를 표현하는 방법을 간단히 알려드리려고 합니다.

 

먼저 C에서는 헤더파일을 math.h 을 include 하신 후  sqrt()에 실수형인 숫자를 넣으면  넣은 숫자의 제곱근이 구해집니다.

 

예)

#include <stdio.h>

#lnclude <math.h>

 

int main(void) {

     double d = sqrt(1.0);

 

printf("%d\n",d);

 

return 0 ;

}

 

이상입니다.