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

plz let me know how to become a telecom protocol tester. thank you.

0 Answers  


Explain what are multidimensional arrays?

0 Answers  


What are called c variables?

0 Answers  


where does malloc() function get the memory?

1 Answers  


What does sizeof int return?

0 Answers  






How do I get an accurate error status return from system on ms-dos?

0 Answers  


Differentiate between null and void pointers.

0 Answers   TCS,


What are the different types of constants?

0 Answers  


How the c program is executed?

0 Answers  


What is the concatenation operator?

0 Answers  


Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.

2 Answers   Scientific Atlanta, Wipro,


What is meant by global static? why we have to use static variable instead of Global variable

4 Answers   L&T,


Categories