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 |
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
Is null always defined as 0(zero)?
What are derived data types in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is a void * in c?
What does a pointer variable always consist of?
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
how many error occurs in C language ?
Differentiate between a for loop and a while loop? What are it uses?
How can I pad a string to a known length?
What is the difference between pure virtual function and virtual function?