Answers for "change float to int C++"

C++
2

int to float c++

int a = 3;
float b = (float)a;
Posted by: Guest on February-28-2020

Browse Popular Code Answers by Language