write a program that will read the temperature in Celsius
and convert that into Fahrenheit.
Answer Posted / 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 View All Answers
How can I find out how much free space is available on disk?
Explain how can I convert a string to a number?
write a program to concatenation the string using switch case?
What does the c preprocessor do?
How important is structure in life?
Write a program to identify if a given binary tree is balanced or not.
number of times a digit is present in a number
How can a process change an environment variable in its caller?
Why is c called c not d or e?
Explain about block scope in c?
Explain the difference between #include "..." And #include <...> In c?
How do you construct an increment statement or decrement statement in C?
What is the c language function prototype?
How do we print only part of a string in c?
What is merge sort in c?