linux下当出现如下的错误
area_cycle.c:(.text+0x7f):对‘pow’未定义的引用 collect2: error: ld returned 1 exit status
时解决的办法是编译的时候加上 -lm 如:gcc a.c -o a -lm 即可。