Convert Celsius Into Farhenheit Temperature :C Program Convert Celsius Into Farhenheit Temperature :C Program #include<stdio.h> #include<conio.h> void main() { float cel,faren; clrscr(); printf("Enter Temperature In Celcius"); scanf("%f",&cel); faren=9.0/5.0*cel+32; printf("Temperature In Fahrenheit is : %f",faren); getch(); } 02 Nov 2015
0 comments:
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.