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
Why main function is special give two reasons?
What is difference between Structure and Unions?
What is difference between class and structure?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
How to draw the flowchart for structure programs?
write a program to print largest number of each row of a 2D array
What is the advantage of using #define to declare a constant?
Explain what are the advantages and disadvantages of a heap?
Explain the difference between the local variable and global variable in c?
What are the loops in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
The statement, int(*x[]) () what does in indicate?
What is the role of this pointer?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Explain what is the difference between functions getch() and getche()?