This code is to convert celcius into fahrenheit
#include<stdio.h>
main(){
float c,f; //Define two number in float as the temperature can be in decimal
printf("Enter the temperature in celcius: ");
scanf("%f",&c); //Enter the temperature
f=((9*c)/5)+32; //formula to convert celcius to farhanite
printf("%f",f); //display the temperature in farhanite
}