erfc, erfcf, erfcl헤더 파일[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - math.h double erfc(double x); 여오차함수 (1 - erf(x))float erfcf(float x); 여오차함수 (1 - erf(x))long double erfcl(long double x); 여오차함수 (1 - erf(x)) 입력 매개 변수 리스트x 실수반환 값1 - erf(x) 여오차함수는 1 - erf(x)입니다. 다음은 오차함수의 수식입니다.사용 예 //C언어 표준 라이브러리 함수 가이드 //double erfc(double x); 여오차함수 (1 - erf(x)) //float erfcf(float x); 여오차함수 (1 - erf(x)) //long double erfc..