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
write a program to generate address labels using structures?
Explain about the functions strcat() and strcmp()?
What is a program flowchart and explain how does it help in writing a program?
Explain setjmp()?
What is I ++ in c programming?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Is c high or low level?
Explain what are the standard predefined macros?
What are the two types of structure?
Do you know the difference between exit() and _exit() function in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Describe explain how arrays can be passed to a user defined function
What is the difference between char array and char pointer?
What does main () mean in c?
What is an lvalue?