07/03/2016

C Program For Converting Temperature Celsius Into Fahrenheit

Problem :- C++ Program For Converting Temperature Celsius Into Fahrenheit .means you have to given temperature in Celsius you need to change temperature in Fahrenheit .

Logic :- For converting temperature Celsius to Fahrenheit their is a formula you just put Celsius temperature and calculate and print temperature in Fahrenheit Formula is given below


Formula :-  

Fahrenheit = ((9/5) * Celsius) + 32; //or you can use 1.8 in place of 9/5

See Also :- C++ Program For Converting Temperature Celsius Into Fahrenheit


Solution :-


#include<stdio.h>


int main()
{
 /*Program By Ghanendra Yadav
   Visit http://www.programmingwithbasics.com/
  */
 float cel, fah;

 printf("\nEnter Temperature in Celsius : ");
 scanf("%f", &cel);

 fah = (1.8 * cel) + 32;
 printf("\nTemperature in Fahrenheit : %f ", fah);

 return (0);

}

See Also :- Java Program For Converting Temperature Celsius Into Fahrenheit


Output :- 


C Program For Converting Temperature Celsius Into Fahrenheit


Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: