08 March, 2013

C Program For Conversion Of Celsius To Fahrenheit.

This Post Contains A C Program For Conversion Of Celsius To Fahrenheit With Correct Source Code & Output. This Program Is Written, Compiled & Executed At TurboC/C++3.0 Compiler & Will Help You To Understand The Concept Of 'Arithematic Manipulations' From C Language. It Is A Well-Structured Program With Proper Comments Which Provides Step-By-Step Description Of Various Features Of The Language In A Simple & Easy-To-Understand Way.


# Note : You Can Simply Copy-Paste The Following Program Or Code Into Compiler For Direct Result.


C Program For Conversion Of Celsius To Fahrenheit.

/* Declaration Of Header Files */
# include < stdio.h >
# include < conio.h >

/* Start Of Main Program */
void main()
{
  
   /* Declaration Of Variables */ 
   float cel, fah;

   clrscr();

   /* Asking For The Input From User */
   printf ( " \n Enter Temp. In Celsius : " );
   scanf ( " %f ", &cel );
  
   fah  =  (  cel  +  32  )  *  9.0  /  5.0;

   /* Printing The Output Onto The Screen/Console */
   printf ( " \n Temp. In Fahrenheit :  %f  ",  f ah);
   getch();
}

Output :

Enter Temp. In Celsius : 37 C
Temp. In Fahrenheit : 98.6 F




No comments:

Post a Comment

Subscribe To:

Most Commonly Asked Programs In 'C' & 'C++' Language.