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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I implement sets or arrays of bits?

1092


What is c language and why we use it?

1121


What's the best way of making my program efficient?

1153


Write a program to check armstrong number in c?

1180


What is context in c?

977


How can I sort a linked list?

1086


What is a method in c?

1211


How many identifiers are there in c?

1085


Why static is used in c?

1145


Can the sizeof operator be used to tell the size of an array passed to a function?

1177


What is the difference between typedef struct and struct?

1165


Explain how do you determine whether to use a stream function or a low-level function?

1135


a value that does not change during program execution a) variabe b) argument c) parameter d) none

1291


What does & mean in scanf?

1166


explain what is an endless loop?

1147