bsc

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

root / semester_1 / tuition-c / P004.c

P004.c (255B)


      1 /* WAP to find and display the value of given expression :
      2 ((x+3)/4) - ((2x+4)/3) taking the value of x = 5 */
      3 
      4 #include<stdio.h>
      5 int main() {
      6 	double x =5, result;
      7 	result = ((x + 3) / 4) - ((2 * x + 4) / 3);
      8 	printf("Result = %lf",result);
      9 	return 0;
     10 }
© 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