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 does dm mean sexually?
which is the best antivirus and how to update it
What is volatile, register definition in C
Is fortran faster than c?
Explain argument and its types.
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is identifier in c?
What is this infamous null pointer, anyway?
write a program to count the no of repaeted words in a line?
program in c to print 1 to 100 without using loop
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?