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 "Hungarian Notation"?

1089


What is a shell structure examples?

1076


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

1451


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

2741


What is omp_num_threads?

1065


What is the significance of an algorithm to C programming?

1031


What is a null pointer in c?

1205


What is difference between constant pointer and constant variable?

1284


What is meant by type casting?

1046


Explain zero based addressing.

1004


What are the differences between new and malloc in C?

1125


What are the string functions? List some string functions available in c.

977


How do you print an address?

1252


Explain null pointer.

1093


Implement bit Array in C.

1123