Computer Science, asked by triorganization77, 9 hours ago

Conversion From int to double C++ i cant understand this properly explain me pls with example

Answers

Answered by nalavalachitraksh
0

Answer:int a{5},b{2},c{9};

double d = (double)a / (double)b + (double)c;

Explanation:

Similar questions