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 "Hungarian Notation"?
What is a shell structure examples?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is omp_num_threads?
What is the significance of an algorithm to C programming?
What is a null pointer in c?
What is difference between constant pointer and constant variable?
What is meant by type casting?
Explain zero based addressing.
What are the differences between new and malloc in C?
What are the string functions? List some string functions available in c.
How do you print an address?
Explain null pointer.
Implement bit Array in C.