fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. float c,f;
  5. printf("Enter the value of f:");
  6. scanf("%f",&f);
  7. c=(5*(f-32))/9;
  8. printf("%f",c);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5272KB
stdin
100
stdout
Enter the value of f:37.777779