write a programme to convert temperature from farenheit to celcius?
Answer Posted / prasanna kumar [cse dept. kln
#include<stdio.h>
#include<conio.h>
void main()
{
float farenheit,celsuis;
clrscr();
printf("Enter the farenheit:");
scanf("%f",&farenheit);
celsuis=(farenheit-32)/1.8;
printf("the celcius for the given farenheit is %f.",farenheit);
getch();
}
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
What is a pointer variable in c language?
Explain how do you declare an array that will hold more than 64kb of data?
What are c identifiers?
Why is sprintf unsafe?
Describe explain how arrays can be passed to a user defined function
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is a stream water?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
When do we get logical errors?
What is a char c?
Write a program to swap two numbers without using the third variable?
Is return a keyword in c?
Who is the main contributor in designing the c language after dennis ritchie?
Explain pointers in c programming?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays