fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. float c = 37.0 ;
  5.  
  6. float f = ((9.0/5.0)*c) + 32 ;
  7.  
  8. printf("the value in fahrenheit is %f", f);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
the value in fahrenheit is 98.599998