bsc

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

P006.c (417B)


      1 /*
      2  * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025
      3  * Repo: https://github.com/notamitgamer/bsc
      4  * License: MIT
      5  */
      6 
      7 /* The normal temperature of human body
      8 is 98.6 Degree Fahrenheit. WAP to convert the temperature
      9 to Degree Celcius and display the output. */
     10 
     11 #include<stdio.h>
     12 int main() {
     13 	double f = 98.6, c;
     14 	c = ((f - 32) * 5) / 9;
     15 	printf("Temperature in Celcius is : %lf",c);
     16 	return 0;
     17 }
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror