Does anyone know if there excist any header files for C++ with a sinus and/or cosinus calculator. Because I can't seem to find out how to calculate sinus and cosinus with C++.
Thank you in advance.
Andreas
testify
06-12-03, 03:30 AM
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt_sin.2c_.sinh.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt_cos.2c_.cosh.asp
Try not to read the MSDN pages too much, they often differ from the ANSI standards in some important places.
-AntonK
testify
06-12-03, 01:15 PM
So where would be a good idea to get C++ functionality ifnormation?
http://www.cppreference.com/
-AntonK
I appriciate your help.
Andreas
No problem. By sticking to the cpp reference your code will be easier to port to other systems than if you use any proprietary standards.
Most of the software I write will compile WITHOUT CHANGING on both Windows and Linux (and with some tweaking, other systems).
-AntonK