Ok, I am trying to use the function and I'm #including math.h. There's a
ton of online references that say this should work, but when I compile it
I get this message:
gcc -g -Wall zscore.c main.c -o main
/tmp/ccevIzCM.o: In function `normalize':
/home/masseya/zscore.c:242: undefined reference to `sqrt'
collect2: ld returned 1 exit status
Why doesn't this work? Is there an official reference that I should look
at to see if sqrt() is in a different header file?
Thanks for holding my hand for a newbie-ish question..
-Aaron