[질문] 궁금합니다.
글쓴이: ysy / 작성시간: 목, 2003/04/03 - 8:11오후
ysy$ cc p1-12.c -o p1-12
/tmp/ccCv6wOm.o: In function 'main':
/tmp/ccCv6wOm.o(.text+0x28): undefined reference to 'exp'
collect2: ld returned 1 exit status
왜 이런 에러가 나죠??
ysy$ cat p1-12.c
#include <stdio.h>
#include <math.h>
int main(void)
{
float x,y;
scanf("%f",&x);
y = exp(x);
printf("%f\n",y);
return 0;
}
ysy$ g++ p1-12.c -o p1-12
에러가 없습니다.
Forums:
math library 를 포함시키세요.-lm
math library 를 포함시키세요.
-lm
---
http://coolengineer.com
답변감사합니다.
댓글 달기