This is a simple C program that converts temperature from Celsius to Fahrenheit.
- Run the program.
- Enter the temperature in Celsius when prompted.
- The program will output the temperature in Fahrenheit.
The conversion formula used in this program is:
F = (9/5) * C + 32
Where:
- F is the temperature in Fahrenheit
- C is the temperature in Celsius
- Compile the program using a C compiler.
- Execute the compiled program.
- Enter the temperature in Celsius when prompted.
- The program will display the temperature in Fahrenheit.
Enter Temperature in Celsius: 25
25 Celsius = 77 Fahrenheit
- Ensure that you have a C compiler installed on your system to compile and run this program.
- This program assumes valid input (i.e., a numeric value for temperature).
Feel free to customize it further to add more details or instructions as needed.