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 program that will read the temperature in Celsius
and convert that into Fahrenheit.

Answer Posted / umed sharma

This is the easy answer

#include<stdio.h>
#include<conio.h>
void main()
{
float c,f;
printf("\n Enter temperature in celsius");
scanf("%f",&c);
f=(1.8 * c) + 32;
printf("\n temperature in fahrenheit is = %.2f",f);
getch();
}

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is data structure in c and its types?

1017


When should the const modifier be used?

1059


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

1010


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

1118


What is property type c?

1044


What are dangling pointers? How are dangling pointers different from memory leaks?

1231


What is getch c?

1242


What does typedef struct mean?

1044


What are the difference between a free-standing and a hosted environment?

1220


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

2295


Explain how are portions of a program disabled in demo versions?

1073


What do you understand by friend-functions? How are they used?

1156


What is static and volatile in c?

1172


what are the 10 different models of writing an addition program in C language?

1840


Can you please compare array with pointer?

1030