I want to write 4/3 as a fraction in C++. I know that 4/3 is equal to 1.33333. But when I write 4/3 in the code it outputs it's quotient which is 1. Can anyobody tell me how to write this number as fraction?
The code:
double vol_sphere(double radiusS){
return (4/3) * pi * pow(radiusS, 3);
}