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 |
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Explain the term printf() and scanf() used in c language?
What are different storage class specifiers in c?
Read two numbers from keyboard and find maximum of them?
Explain continue keyword in c
What are the advantages of using new operator as compared to the function malloc ()?
What functions are used for dynamic memory allocation in c language?
what is reason of your company position's in india no. 1.
How to define structures? ·
Why shouldn’t I start variable names with underscores?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58