/* Fahr to Celsius convertor */

#include<stdio.h>

void main()
{
  float f;
  float c;

  printf("\n Enter temperature in Fahrenheit: ");

  scanf("%f", &f);

  c= (5.0/9.0)*(f-32.0);

  printf("\n Temp in Celsius is %f", c);

}

