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

rest - Spring boot: Request method 'PUT' not supported -

php - Magento - Deleted Base url key -

symfony - imagine_filter() not generating the correct url in LiipImagineBundle -