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 the different types of arrays in c?
What is scanf () in c?
I have a varargs function which accepts a float parameter?
any string of bits of length 'n' represents a unique non- negative integer between.............?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is a stream in c programming?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
Explain how can I make sure that my program is the only one accessing a file?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
how to construct a simulator keeping the logical boolean gates in c
Can a pointer be static?