Subscribe to Feeds

Send Your Projects To georgepj@hotmail.com

We'll Publish It With Your Name :-)

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

 <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 &amp; Vice Versa   
//Downloaded from www.c4cprog.co.nr
#include&lt;conio.h&gt;
void main()
{
float f,c;
clrscr();
printf("Enter Temperature in Celcius : ");
scanf("%f",&amp;c);
f=(1.8*c)+32;
printf("\nTemperature in Farenheit : %f",f);
printf("\n\nEnter Temperature in Farenheit : ");
scanf("%f",&amp;f);
c=(f-32)/1.8;
printf("\nTemperature in Celcius : %f",c);
getch();
}
</code></pre>

0 comments:

Post a Comment