Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Dear all How to convert float to double? Thanks
Is this not working ?
float f=1.5f; double d; d=(double)f;
~RaGE();
if u are using c++ double_var=static_cast(float_var)
you can do the following float f = some_value; . . . double d = static_cast(f); think it should work! And you will know my name is the Lord when I lay my vengeance upon thee.
d=(double)f; d=static_cast(f); Interesting. This always works for me: d = f; ;)
d = f;