fork download
  1. #include<stdio.h>
  2.  
  3. void main()
  4.  
  5. {
  6. float celcius;
  7. float farenheit;
  8. printf("Enter the value of celcius:> ");
  9. scanf("%f",&celcius);
  10. farenheit=(9*celcius)/5+32;
  11. printf("\nFarenheit= %f\n",farenheit);
  12.  
  13. }
Runtime error #stdin #stdout 0s 2172KB
stdin
Standard input is empty
stdout
Enter the value of celcius:> 
Farenheit= 29082978877440.000000