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 |
What is hashing in c language?
What are the advantages of using macro in c language?
What is a pointer in c?
How can I read in an object file and jump to locations in it?
What is a function simple definition?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is restrict keyword in c?
Should a function contain a return statement if it does not return a value?
What is realloc in c?
what are bitwise shift operators?
How do c compilers work?