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
what are the different storage classes in c?
Is c pass by value or reference?
What are the types of i/o functions?
How many keywords are there in c?
Explain the bubble sort algorithm.
What are register variables in c?
write a program for the normal snake games find in most of the mobiles.
Describe the difference between = and == symbols in c programming?
What are the different types of pointers used in c language?
What does dm mean sexually?
What are local static variables? How can you use them?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What are the 32 keywords in c?
Do you know pointer in c?
Tell me what is the purpose of 'register' keyword in c language?