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