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


Please Help Members By Posting Answers For Below Questions

What is indirection in c?

629


what is the height of tree if leaf node is at level 3. please explain

1602


What is the use of putchar function?

651


Why is C language being considered a middle level language?

658


Explain how can type-insensitive macros be created?

572






What are variables c?

622


What is wrong with this initialization?

593


will u please send me the placement papers to my mail???????????????????

1367


A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.

1252


Write a program to implement queue.

666


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

2802


What is the use of f in c?

559


Explain the difference between structs and unions in c?

576


What are c header files?

581


Explain how can I convert a number to a string?

650