write a programme to convert temperature from farenheit to celcius?
Answer Posted / yamuna
/* A.YAMUNA III BSC CS,L.R.G COLLEGE,TIRUPUR*/
#include<stdio.h>
#include<conio.h>
void main()
{
float f,c;
clrscr();
printf("Enter the Fahrenheit value:");
scanf("%f",&f);
c = (f-32)*5/9;
printf(" The Celsius value :%f",c);
getch();
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How can I implement sets or arrays of bits?
What is c language and why we use it?
What's the best way of making my program efficient?
Write a program to check armstrong number in c?
What is context in c?
How can I sort a linked list?
What is a method in c?
How many identifiers are there in c?
Why static is used in c?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is the difference between typedef struct and struct?
Explain how do you determine whether to use a stream function or a low-level function?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What does & mean in scanf?
explain what is an endless loop?