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


Please Help Members By Posting Answers For Below Questions

What is c token?

1064


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

1006


What is the advantage of c?

1123


Why do we use pointer to pointer in c?

1082


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2576


Explain do array subscripts always start with zero?

1223


difference between Low, Middle, High Level languages in c ?

2079


Compare interpreters and compilers.

1063


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1721


Write a program to find factorial of a number using recursive function.

1119


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

1068


What does the c preprocessor do?

1102


C program to find all possible outcomes of a dice?

2350


What are enums in c?

1196


Why c is known as a mother language?

1079