function in C

function to Convert Fahrenheit into Celsius using C Program

function to Convert Fahrenheit into Celsius using C Program

In this tutorial, we will discuss the concept of the function to Convert Fahrenheit into Celsius using C Program

In this post, we will learn how to write a program to convert Fahrenheit into Celsius using the scientific equation in C programming language with an Example program.

Temperature and conversion

Conversion equation

Generally, We have known three types of temperature units Fahrenheit, Celsius, and Kelvin. In this article, we are discussing how to convert temperature units Fahrenheit into Celsius. Fahrenheit and Celsius are the measuring units in degrees as 0F and 0C  respectively.

Scientific equation Celsius = (Fahrenheit-32)*9/5

program to convert Fahrenheit into Celsius

Code to Fahrenheit into Celsius

Fahrenheit into Celsius

In this program, the user declares a double variable as a parameter for Fahrenheit in the user-defined function. When the user calls the function, the Celsius value passes to the method as an argument.
Finally, the Celsius value is calculated using a scientific equation and displayed on the screen.

Program 1

// program to convert fahrenheit into celsius using function
//in C language
#include <stdio.h>
 float convertFahToCels(float fh){
 return ((fh-32)*5/9);
 }
int main() {
    // declaring variables
   
   
    //Convert fahrenheit into celsius
    float celsius=convertFahToCels(32.00);
     float celsius1=convertFahToCels(00.00);
    float celsius2=convertFahToCels(212.00);
    float celsius3=convertFahToCels(100.00);
    float celsius4=convertFahToCels(200.00);
    printf("The temperature in Celsius is=%.2f \n",celsius);
    printf("The temperature in Celsius is=%.2f \n",celsius1);
 printf("The temperature in Celsius is=%.2f \n",celsius2);
  printf("The temperature in Celsius is=%.2f \n",celsius3);
   printf("The temperature in Celsius is=%.2f \n",celsius4);;
    return 0;
}

When the above code is executed, it produces the following result

The temperature in Celsius is=0.00
The temperature in Celsius is=-17.78
The temperature in Celsius is=100.00
The temperature in Celsius is=37.78
The temperature in Celsius is=93.33

 

Fahrenheit into Celsius – Entered by the user

In this program, the user declares a double variable as a parameter for Fahrenheit in the user-defined function. When the user runs the program (calling the function), the program is asked for the value for Fahrenheit and stores the given value in the variable Fahrenheit as an argument for the function.
Finally, the Celsius value is calculated using scientific equations and displayed on the screen.

Program 2

// C program to convert fahrenheit into celsius using function
#include <stdio.h>
 float convertFahToCels(float fh){
 return ((fh-32)*5/9);
 }
int main() {
    // declaring variables
    float celsius,fahrenheit;
   //ask input for variables
     printf("Enter temperature in Fahrenheit :");
    scanf("%f",&fahrenheit);
    //Convert fahrenheit into celsius
    celsius=convertFahToCels(fahrenheit);
    printf("The temperature in Celsius is=%.2f ",celsius);

    return 0;
}

When the above code is executed, it produces the following result

Enter temperature in Fahrenheit:200.00
The temperature in Celsius is=93.33

 

 

Similar post

Code to convert Fahrenheit into Celsius using the Java

Code to convert Celsius into Fahrenheit using the Java

Java program to convert Fahrenheit into Celsius using the method

Java program to convert Celsius into Fahrenheit using the method

 

Code to convert Fahrenheit into Celsius using the C Language

Code to convert Celsius into Fahrenheit using the C Language

C program to convert Fahrenheit into Celsius using the function

C program to convert Celsius into Fahrenheit using the function

 

function to Convert Celsius into Fahrenheit in C language
C++ program to convert Celsius into Fahrenheit
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

2 months ago