write a c program to convert fahrenheit to celsius?
Answer Posted / 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 |
Post New Answer View All Answers
Explain what are bus errors, memory faults, and core dumps?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the use of function overloading in C?
what are bit fields in c?
swap 2 numbers without using third variable?
What are dangling pointers? How are dangling pointers different from memory leaks?
Explain the term printf() and scanf() used in c language?
What is static memory allocation?
What are the characteristics of arrays in c?
What are local variables c?
What is ## preprocessor operator in c?
How does pointer work in c?
Explain how can I write functions that take a variable number of arguments?
What are the types of pointers in c?
What header files do I need in order to define the standard library functions I use?