#include #include void main(){float c, f;clrscr();printf(" Please Enter Temperature in centigrade: ");scanf("%f",&c);f = ( 1.8 * c ) + 32;printf(" Temperature in Fahrenheit = %f", f);getch();}
No comments:
Post a Comment