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
Explain how do you declare an array that will hold more than 64kb of data?
How do you construct an increment statement or decrement statement in C?
Explain the use of 'auto' keyword in c programming?
Are the expressions * ptr ++ and ++ * ptr same?
how can use subset in c program and give more example
What is malloc return c?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Under what circumstances does a name clash occur?
Is c is a low level language?
What is openmp in c?
Is main is a keyword in c?
What is a void * in c?
What’s a signal? Explain what do I use signals for?