floating point - Simple int to float conversion in c++ -


my function called "inverzmatrika" returns int type of variable. need convert floating-point number. suggestions?

float inverz; inverz = (float)(inverzmatrika(matrika)); 

use static_cast, don't use c style cast

float inverz = static_cast<float>(inverzmatrika(matrika)); 

Comments

Popular posts from this blog

c# - Sort XmlNodeList with a specific Node value -

Android Java.Lang.RuntimeException : Unable to start activity Component Info -

actionscript 3 - Equivalent to moveReceived in ElectroServer 5 -