#include<stdio.h> #include<conio.h> void main() { float celsius,fahrenheit; clrscr(); printf("Enter temp in Celsius : "); scanf("%f",&celsius); fahrenheit = (1.8 * celsius) + 32; printf("Temperature in Fahrenheit : %f ",fahrenheit); getch(); }
Output :
Enter temp in Celsius : 32 Temperature in Fahrenheit : 89.59998
No comments:
Post a Comment