write a c program to convert fahrenheit to celsius?
Answer Posted / ramanan
#include<stdio.h>
#include<conio.h>
void main()
{
float c,t;
clrscr();
printf("\n enter the celsius value...");
scanf("%f",&c)
f=(1.8*c)+32
printf("\n to converted fahernheit is ....%2.f",f);
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is self-referential structure in c programming?
What is wild pointer in c with example?
Explain heap and queue.
Write a program to reverse a string.
What is the purpose of ftell?
What does dm mean sexually?
Explain what is the benefit of using #define to declare a constant?
Add Two Numbers Without Using the Addition Operator
What is the use of header files?
What is a macro in c preprocessor?
What's the right way to use errno?
code for quick sort?
I need previous papers of CSC.......plz help out by posting them.......
What is a c token and types of c tokens?
Write programs for String Reversal & Palindrome check