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 |
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
In which layer of the network datastructure format change is done
What is the difference between c &c++?
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
What is c value paradox explain?
What is a floating point in c?
What is Lazy evaluation in C? Give an example.
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
What are structures and unions? State differencves between them.
What's the difference between constant char *p and char * constant p?
What is hashing in c?
how to devloped c lenguege?