commit 4fbaded570d87b8ade1df61240bb49b97cfd77c7 parent 191e935d011e7a9c72863f6b3b023918206330a1 Author: Amit Dutta <amitdutta4255@gmail.com> Date: Sun, 14 Sep 2025 20:14:12 +0530 Delete tution-c/P6.c Diffstat:
| D | tution-c/P6.c | | | 11 | ----------- |
1 file changed, 0 insertions(+), 11 deletions(-)
diff --git a/tution-c/P6.c b/tution-c/P6.c @@ -1,11 +0,0 @@ -/* The normal temperature of human body -is 98.6 Degree Fahrenheit. WAP to convert the temperature -to Degree Celcius and display the output. */ - -#include<stdio.h> -int main() { - double f = 98.6, c; - c = ((f - 32) * 5) / 9; - printf("Temperature in Celcius is : %lf",c); - return 0; -}