<pre style="font-family:arial;font-size:12px;border:1px dashed #CCCCCC;width:99%;height:auto;overflow:auto;background:#f0f0f0;padding:0px;color:#000000;text-align:left;line-height:20px;"><code style="color:#000000;word-wrap:normal;"> //Program 4 - To Convert Celcius to Farenheit & Vice Versa
//Downloaded from www.c4cprog.co.nr
#include<conio.h>
void main()
{
float f,c;
clrscr();
printf("Enter Temperature in Celcius : ");
scanf("%f",&c);
f=(1.8*c)+32;
printf("\nTemperature in Farenheit : %f",f);
printf("\n\nEnter Temperature in Farenheit : ");
scanf("%f",&f);
c=(f-32)/1.8;
printf("\nTemperature in Celcius : %f",c);
getch();
}
</code></pre>
Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]
Convert Celcius To Farenheit & vice versa
Click Here To Download C File Of This Program
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment