I have an application written in Microsoft Visual C++ 6.0. Now I have rewritten the application in Visual Studio 2010 using C#, but the results are not matching because of precision problems. One of such precision issues is the following one.
float a = 1.0f;
float b = 3.0f;
float c = a / b;
This is C# code when run in Visual studio 2010 gives c value = 0.333333343
But the same code, removing f after the value in the value definition, when run on Visual C++ 6.0 gives c value = 0.333333.
Can anybody sort it out and explain the way to have the same value for c in visual Studio as well as in Visual C++ 6.0??
Actually the values are taken from the watch window. I came to know that different versions of visual studio may differ in floating point format representation. Hence the values in watch may not be useful. This is the reason why I have printed the values in both visual studio versions and the results are as follows. with visual studio 6.0 using visual c++ language it is 0.333333(six 3's)
but with visual studio 10 using C# language it is 0.3333333(seven 3's)
So can anybody help me to make my C# program to produce the same result as visual C++??? (i.e how can i make floating operations to produce the same results on both the versions???)
doublebehind the scenes), but the methods of showing a number to the user differ, so you could simply be looking at different display defaults. – Mr Lister Dec 15 '11 at 12:37floatrange and precision" (emphasis added). So the behind-the-scenes precision is implementation-defined. The .NET Framework may well use doubles behind the scenes. – phoog Dec 28 '11 at 18:29