I am trying to use the sinf
function in my C Program but it gives me an undefined reference error under MSVC 6.0, however sin
works fine.
This make me curious to find the difference between sin
and sinf
.
What is the logical difference between sin
and sinf
?
How can I implement my own sinf
functionality?