In my MFC project I have two classes first class is called LoadDrivers and the second class is called OvrControl. In the class LoadDrivers I have a pointer assigned called IOvr5* m_OvrApi; when the...
Hi I want to round of a double to 3 decimal places but I keep getting 1.000000
My example is
double m_CordX = 1084/720;
I should get 1.5055555555 but im getting 1.0000000
I need to round t...