write a programme to convert temperature from farenheit to celcius?
Answers were Sorted based on User's Feedback
Answer / hasitbhatt
/*
Hasit P. Bhatt
Institute Of Technology,Nirma University,Ahmedabad.
hasit.p.bhatt@gmail.com
http://facebook.com/hasit.p.bhatt.page
*/
#include<stdio.h>
#include<conio.h>
void main()
{
float faren;
clrscr();
printf("Enter the farenheit value:");
scanf("%f",&faren);
printf("%.2f",(faren-32)*5/9.0);
getch();
}
| Is This Answer Correct ? | 18 Yes | 5 No |
Answer / prasanna kumar [cse dept. kln
#include<stdio.h>
#include<conio.h>
void main()
{
float farenheit,celsuis;
clrscr();
printf("Enter the farenheit:");
scanf("%f",&farenheit);
celsuis=(farenheit-32)/1.8;
printf("the celcius for the given farenheit is %f.",farenheit);
getch();
}
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / 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 |
Answer / 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 |
Can a program have multiple main() functions?
char ch="{'H','I',0};printf("%s",ch);what is output
hi any body pls give me company name interview conduct "c" language only
find the sum of two matrices and WAP for it.
Write a program to generate random numbers in c?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
What is use of bit field?
write a program to rearrange the array such way that all even elements should come first and next come odd
When is a “switch” statement preferable over an “if” statement?
How do I use strcmp?
Is it possible to create recycle bin in mobiles?
input any 4 digit number and find the difference of all the digits?