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