Answers for "c++ cast int to double"

C++
0

c++ convert int to double

int a{5},b{2},c{9};
double d = (double)a / (double)b + (double)c;
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language