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


Please Help Members By Posting Answers For Below Questions

An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

658


Why c is procedure oriented?

574


how to create duplicate link list using C???

2075


What extern c means?

543


How many main () function we can have in a project?

614






What is the difference between null pointer and wild pointer?

640


What is union and structure?

574


Hai what is the different types of versions and their differences

1491


Write a program to find the biggest number of three numbers in c?

588


Write a program to check prime number in c programming?

598


How do you write a program which produces its own source code as output?

608


The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?

666


I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.

1498


When should you use a type cast?

593


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??

1544