gcc -o test test.c -lm : #include <stdio.h> : #include <math.h> : int main() : { : printf("%d",exp(1.2345)); : return 0; : } : gcc -o test test.c하면 : undefined in exp()라는 에거가 생기네요. : 도와주세요. : 다른 함수는 이상이 없는데 말입니다. : 수학함수만 에러입니다..