write a c program to convert fahrenheit to celsius?
Answers were Sorted based on User's Feedback
Answer / azad sable,chiplun.
void main()
{
float fr,cent;
clrscr();
printf("enter the tempreture in F");
scanf("%f",&fr);
cent=5.0/9.0*(fr-32);
printf("\nTempreture in centigrade=%f",cent);
}
getch();
}
| Is This Answer Correct ? | 24 Yes | 3 No |
Answer / faizan
/*Logic== C=(f-32)/1.8 ==*/
#include<stdio.h>
#include<conio.h>
#define f_low 0
#define f_max 250
#define step 25
void main()
{
typedef float real;
real fahrenheit,celsius;
clrscr();
fahrenheit=f_low;
printf("Fahrenheit Celsius\n\n");
while(fahrenheit<=f_max)
{
celsius=(fahrenheit-32.0)/1.8;
printf("%5.1f
%7.2f\n\n",fahrenheit,celsius);
fahrenheit=fahrenheit+step;
}
getch();
}
| Is This Answer Correct ? | 26 Yes | 13 No |
Answer / bukke ramesh naik
/* c=(f-32)/1.8 */#include<stdio.h>
#include<iomap.h>
#define fahern_low 0
#define fahern_max 250
void main()
float c,f;
clrscr();
f=fahern_low;
printf("fahernheat into celsius\n");
while(f<=fahern_max)
{
c=(f-32.0)/1.8;
f=f+c;
}
getch();
}
| Is This Answer Correct ? | 19 Yes | 7 No |
Answer / ramanan
#include<stdio.h>
#include<conio.h>
void main()
{
float c,t;
clrscr();
printf("\n enter the celsius value...");
scanf("%f",&c)
f=(1.8*c)+32
printf("\n to converted fahernheit is ....%2.f",f);
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Does free set pointer to null?
how to find greatet of 10 numbers without using array?
what is the use of keyword volatile??
What is the use of ?: Operator?
What does the error 'Null Pointer Assignment' mean and what causes this error?
a simple c program using 'for' loop to display the output 5 4 3 2 1
write an interactive program to generate the divisors of a given integer.
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is Conio.h ?
without a terminator how can we print a message in a printf () function.
What is volatile c?
What is keyword with example?