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 |
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
How to establish connection with oracle database software from c language?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is the use of a conditional inclusion statement in C?
Write any data structure program (stack implementation)
whitch value return void main?
Explain union.
What are high level languages like C and FORTRAN also known as?
What is pointer to pointer in c with example?
What is calloc()?
What is build process in c?