write a c program to convert fahrenheit to celsius?
Answer Posted / 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 |
Post New Answer View All Answers
What is the stack in c?
Why & is used in scanf in c?
Write a program to check palindrome number in c programming?
Is linux written in c?
Do pointers need to be initialized?
Why is extern used in c?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What is function prototype in c with example?
What is the sizeof () operator?
Define macros.
Where is volatile variable stored?
When c language was developed?
How many loops are there in c?
What is a null string in c?
Why void is used in c?