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

php - Magento - Deleted Base url key -

javascript - Tooltipster plugin not firing jquery function when button or any click even occur -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -