write a program that will read the temperature in Celsius
and convert that into Fahrenheit.



write a program that will read the temperature in Celsius and convert that into Fahrenheit...

Answer / umed sharma

This is the easy answer

#include<stdio.h>
#include<conio.h>
void main()
{
float c,f;
printf("\n Enter temperature in celsius");
scanf("%f",&c);
f=(1.8 * c) + 32;
printf("\n temperature in fahrenheit is = %.2f",f);
getch();
}

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More C Interview Questions

Differentiate between the expression “++a” and “a++”?

0 Answers  


what is the structure?

4 Answers   TCS,


Is null always defined as 0(zero)?

0 Answers  


Explain logical errors? Compare with syntax errors.

0 Answers  


the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters

2 Answers  






in which language c language is written?

2 Answers  


What is #line used for?

0 Answers  


the question is that what you have been doing all these periods (one year gap)

0 Answers   HCL,


Explain what are linked list?

0 Answers  


Write a program to exchange two variaables without temp

9 Answers   Geometric Software,


Is flag a keyword in c?

0 Answers  


Here is a neat trick for checking whether two strings are equal

0 Answers  


Categories