What will be the output of the following C code? void main() { double t=9.0,c=78.50; float Res; Res = (t+c)/8; printf(%.4f, Res); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following C code? void main() { double t=9.0,c=78.50; float Res; Res = (t+c)/8; printf(%.4f, Res); }