write a c program to convert fahrenheit to celsius?
Answer Posted / 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 |
Post New Answer View All Answers
What is the use of clrscr?
Explain the properties of union. What is the size of a union variable
Is c procedural or object oriented?
How many main () function we can have in a project?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is property type c?
What is #include stdlib h?
What is main () in c?
What are the Advantages of using macro
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Is stack a keyword in c?
What functions are used for dynamic memory allocation in c language?
What is the difference between single charater constant and string constant?
Explain what is the benefit of using #define to declare a constant?
What does return 1 means in c?