commit 3a65a8495dbbdab66f9ea227416ab68927f12ea5 parent 79a478c32d70d89444e067af4ac8d0d76f47b6ef Author: Amit Dutta <amitdutta4255@gmail.com> Date: Sun, 14 Sep 2025 20:13:52 +0530 Delete tution-c/P4.c Diffstat:
| D | tution-c/P4.c | | | 10 | ---------- |
1 file changed, 0 insertions(+), 10 deletions(-)
diff --git a/tution-c/P4.c b/tution-c/P4.c @@ -1,10 +0,0 @@ -/* WAP to find and display the value of given expression : -((x+3)/4) - ((2x+4)/3) taking the value of x = 5 */ - -#include<stdio.h> -int main() { - double x =5, result; - result = ((x + 3) / 4) - ((2 * x + 4) / 3); - printf("Result = %lf",result); - return 0; -}