commit a4c37e0fdea5db97dfa61a73ac8c2526ff29462f parent 7dd3f9da894b21e4dc0c582191ed53859b5c69cc Author: Amit Dutta <amitdutta4255@gmail.com> Date: Tue, 16 Sep 2025 21:17:08 +0530 Delete Letusc-exercises/luc1.c Diffstat:
| D | Letusc-exercises/luc1.c | | | 16 | ---------------- |
1 file changed, 0 insertions(+), 16 deletions(-)
diff --git a/Letusc-exercises/luc1.c b/Letusc-exercises/luc1.c @@ -1,16 +0,0 @@ -/* Temperature of a city in fahrenheit degrees is input through -the keyboard. WAP to convert this temperature into Centigrade -degrees. */ -/* Date : 13 sep, 2025 */ -/* Chapter 1; Page 19; Question NO.: F(a) */ - -#include<stdio.h> -int main() { - float f, c; - printf("Enter the temperature of city in Fahrenheit : "); - scanf("%f", &f); - // formula (F - 32) 5/9 - c = ((f - 32) * 5) / 9; - printf("\nTemperature in centigrade : %f", c); - return 0; -}