Answer :

#include<stdio.h>  //header file contains the function,decleraction and macro defination of key words used in code.

int main ()

{

float  fara,cel;  //adressing the variables

printf("Enter the temperature in celsius "); //output

scanf("%f",&cel);

fara=(cel*9/5)+32; //formula

printf("The temperature in Faranite is %.2f ",fara); //output

}

Output :