bsc

Comprehensive codebase and cou...
Log | Files | Refs | Activity | README | LICENSE

root / semester_1 / tuition-c / P006.c

P006.c (280B)


      1 /* The normal temperature of human body
      2 is 98.6 Degree Fahrenheit. WAP to convert the temperature
      3 to Degree Celcius and display the output. */
      4 
      5 #include<stdio.h>
      6 int main() {
      7 	double f = 98.6, c;
      8 	c = ((f - 32) * 5) / 9;
      9 	printf("Temperature in Celcius is : %lf",c);
     10 	return 0;
     11 }
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror