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
What is void main () in c?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What is a node in c?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
code for find determinent of amatrix
What is #define size in c?
How can I read a binary data file properly?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
What is malloc calloc and realloc in c?
Write a program to reverse a linked list in c.
What is the size of a union variable?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
Hi can anyone tell what is a start up code?
What is anagram in c?
What is the difference between array and pointer in c?