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
What is difference between union All statement and Union?
Explain how to reverse singly link list.
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is the sizeof () operator?
Explain what are header files and explain what are its uses in c programming?
What are global variables?
Explain the use of 'auto' keyword in c programming?
What happens if header file is included twice?
Can a variable be both static and volatile in c?
What is array of structure in c programming?
What is static function in c?
What are different storage class specifiers in c?
Describe the modifier in c?
What are integer variable, floating-point variable and character variable?
What is difference between constant pointer and constant variable?