You are on page 1of 1

#include<stdio.h> #include<conio.

h>

void main() { float f,c; clrscr();

printf("Enter the value of f"); scanf("%f",&f);

c=((f-32)*5)/9;

printf("The temperature in celcius is: %f",c); getch(); }

You might also like