bsc

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

root / semester_1 / tuition-c / APC-S-001.c

APC-S-001.c (187B)


      1 #include<stdio.h>
      2 int main() {
      3 	int a = 9, b = 4, c;
      4 	c = a + b;
      5 	printf("A + B = %d\n", c);
      6 	c = a / b;
      7 	printf("A / B = %d\n", c);
      8 	c = a % b;
      9 	printf("A %% B = %d\n", c);
     10 	return 0;
     11 }
© 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