write a programme to convert temperature from farenheit to celcius?
Answer Posted / ramprasad
void main()
{
int a,b,c;
float d;
printf("Enter the farenheit value:");
scanf("%d",&a);
c=a/32;
d=c/1.8;
printf("The celcius value is\n",d);
getch();
}
| Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
show how link list can be used to repersent the following polynomial i) 5x+2
State two uses of pointers in C?
How can I do peek and poke in c?
What are header files and what are its uses in C programming?
What is the use of #define preprocessor in c?
What are the properties of union in c?
Is python a c language?
If fflush wont work, what can I use to flush input?
List some of the static data structures in C?
What is data types?
What is structure pointer in c?
What is a list in c?
What is difference between structure and union in c?
What is bin sh c?
How can I convert a number to a string?