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

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -