C Program to convert Celcius to Fahrenheit
In this program, we will learn how to convert a temperature in Celcius to Fahrenheit. The standard formula to do so is: Fahrenheit = (Celsius * 9/5) + 32 Or Fahrenheit = (Celsius * 1.8) + 32 Program: #include <stdio.h> int main() { float temp, fTemp; printf("Enter the temperature in …