Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a programme to convert temperature from farenheit to celcius?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the most efficient way to store flag values?

1170


Where local variables are stored in c?

954


Why functions are used in c?

1067


What is sizeof return in c?

977


what is the diffrenet bettwen HTTP and internet protocol

1785


Difference between strcpy() and memcpy() function?

1071


Explain how can I write functions that take a variable number of arguments?

1027


Why are algorithms important in c program?

1067


Is printf a keyword?

1155


typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none

1159


Write a factorial program using C.

1016


How pointers are declared?

906


Is javascript based on c?

994


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

1022


Can we declare variable anywhere in c?

919