C Program to convert centigrade to Fahrenheit

 C Program to convert centigrade to Fahrenheit Hint: f=1.8c+32

Answer:

#include<stdio.h>

int main()

{

    float f,c;

    printf("Enter temp in C");

    scanf("%f",&c);

    f=1.8*c+32;

    printf("%0.2f in centigrade is %0.2f in Fahrenheit",c,f);

    return 0;

}