C Program : Convert temperature from degree centigrade to Fahrenheit

 #include <stdio.h>

int main() { float celsius, fahrenheit; // Input temperature in degrees Celsius printf("Enter temperature in degrees Celsius: "); scanf("%f", &celsius); // Convert Celsius to Fahrenheit fahrenheit = (celsius * 9 / 5) + 32; // Display the converted temperature in degrees Fahrenheit printf("Temperature in degrees Fahrenheit: %.2f\n", fahrenheit); return 0; }

Comments

Popular posts from this blog

Video Formats

Where video editing is used

File saving and folder management