Search This Blog

C Program Convert Celsius Into Fahrenheit

C Program Convert Celsius Into Fahrenheit :
//C Program Convert Celsius Into Fahrenheit

#include<stdio.h>
#include<conio.h>
void main()
{
float c,f;
clrscr();
printf("\n Enter Celcius:- ");
scanf("%f",&c);
f=c*9/5+32;
printf("\n Fahrenheit is:- %f",f);
getch();
}
OUTPUT
C Program Convert Celsius Into Fahrenheit

No comments:

Post a Comment