We appreciate your visit to Predict the output c include int main float c 5 0 printf Temperature in Fahrenheit is 2f 9 5 c 32 return 0 A Temperature. This page offers clear insights and highlights the essential aspects of the topic. Our goal is to provide a helpful and engaging learning experience. Explore the content and find the answers you need!
Predict the output:
```c
#include
int main() {
float c = 5.0;
printf("Temperature in Fahrenheit is %.2f", (9/5) * c + 32);
return 0;
}
```
A. Temperature in Fahrenheit is 41.00
B. Temperature in Fahrenheit is 37.00
C. Temperature in Fahrenheit is 0.00
D. Compiler Error
int main() {
float c = 5.0;
printf("Temperature in Fahrenheit is %.2f", (9/5) * c + 32);
return 0;
}
```
A. Temperature in Fahrenheit is 41.00
B. Temperature in Fahrenheit is 37.00
C. Temperature in Fahrenheit is 0.00
D. Compiler Error