#include <stdio.h>
int main()
{
/* Declare variables to store temperature in Celsius and Fahrenheit */
float cel, fah;
// Ask user to input temperature in Celsius
printf("\nEnter temperature in Celsius:\n");
scanf("%f", &cel);
/* Convert Celsius to Fahrenheit using the formula:
fah=(cel*9.0/5.0)+32; */
//Display the result
printf("\nTemperature in Fahrenheit: %.2f", fah);
return 0;
}
Output:
Enter temperature in Celsius:
32
Temperature in Fahrenheit: 89.6
Explanation:
1. Declare the two variables to store temperature in celsius and Fahrenheit.
2. Ask the user to Enter temperature in Celsius: .
3. Read the input value scanf() and assign it to the variable cel.
4. formula
fah = (cel * 9.0/5.0) + 32
Convert the temperature from Celsius to Fahrenheit using the above formula:
5. Assign the final calculated result to the variable fah.
6. Show the converted temperature using printf() in Fahrenheit with two decimal places
7. Return 0 : indicates the successful execution of the given programprogram.
1.Write a program in C to find area of circle using single-line comments.
2.Write a C program to find addition of two numbers with multi-line comments to write down the purpose of every steps.
3.Write a program in C that describe a complex mathematical formula with nested comments.
4.Write a C program to demonstrate the declaration and initialization of variables of different data types.
5.write a program code in c to swap a values of the two variable without using a third variable.
6.Write a program in c to find area of rectangle by accepting variable value length and width.
7.Write a program that accepts user input for employee name and salary, and then display them using those variables.
8.Write a program in C to demonstrate and decide the size of int, float, char, and double data types.
10.Write a C program to achieve basic arithmetic operations on any two numbers of various data types.
11.Write a program in C that accepts any two numbers from user and calculate addition, multiplication, subtraction and division (+, *,-, /) and show the result.
12.Write a program in c input user name, age And display it.
13.Write a program in C that asks the user to enter the marks obtained in three subjects. Read the marks using scan. Calculate the average marks and display the student details.
Other Topic:-->>Dynamic memory FAQ. || Operators Assignments in C.