I am working with the Borland Turbo C++ compiler in a WINDOWS machine, and wrote a piece of code in C.
I want to use the complementary error function erfc() for one of my calculations.
However, when I run the code, the error is "Linker error: Undefined symbol _erfc in in module filename.c "
The problem here is erfc() and erf() are supposed to be included in the math.h library. However, these aren't available in mine.
Can anyone please tell me how I can include these functions in my program ?
Thank you