#degree centigrade to Fahrenheit using C
1 posts
How to convert temperature from degree centigrade to Fahrenheit using C
C Program to convert temperature from degree centigrade to Fahrenheit
#include <stdio.h>
int main() {
float celsius, fahrenheit;
printf("\nEnter temp in Celsius : ");
scanf("%f",... Read Mores
Codegyan
12-Dec-2021 9:21:47