Showing posts with label Fahrenheit. Show all posts
Showing posts with label Fahrenheit. Show all posts

Jan 26, 2013

The program of Celchias to Fahrenheit

The program of Celchias to Fahrenheit.

#include<stdio.h>
#include<conio.h>
void amin()
{
clrscr();
float C,F;
printf("Input the celcias value=");
scanf("%f",&C);
F=C*(9.0/5.0)+32;
printf("The Fahrenheit value is%.2f",F);
getch();
}

Popular Posts