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

write a program to generate address labels using structures?

4622


Explain about the functions strcat() and strcmp()?

1092


What is a program flowchart and explain how does it help in writing a program?

1357


Explain setjmp()?

1116


What is I ++ in c programming?

1168


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

1253


Is c high or low level?

1052


Explain what are the standard predefined macros?

1167


What are the two types of structure?

1142


Do you know the difference between exit() and _exit() function in c?

1110


Explain how do I determine whether a character is numeric, alphabetic, and so on?

1181


Describe explain how arrays can be passed to a user defined function

1162


What is the difference between char array and char pointer?

1118


What does main () mean in c?

1144


What is an lvalue?

1107