P006.c
Problem Statement
P006.c
The normal temperature of human body is 98.6 Degree Fahrenheit. WAP to convert the temperature to Degree Celcius and display the output.
Source Code
c
#include<stdio.h>
int main() {
double f = 98.6, c;
c = ((f - 32) * 5) / 9;
printf("Temperature in Celcius is : %lf",c);
return 0;
}1
2
3
4
5
6
7
2
3
4
5
6
7
● Author - Amit Dutta · Updated - 12 Dec 2025