C PROGRAMS CONVERT TEMPERATURE FROM DEGREE CELSIUS TO DEGREE FAHRENHEIT
C PROGRAMS CONVERT TEMPERATURE FROM DEGREE CELSIUS TO DEGREE FAHRENHEIT
#include #include main() { int c; float f; clrscr(); printf("Enter temp in degree Celsius"); scanf("%d",&c); f=(float)9/5*c+ 32; printf("\n temp in deg. Celsius=%d C and in deg. fah =%fF",c,f); getch(); }
No comments:
Post a Comment