bsc

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

APC-S-001.c (324B)


      1 /*
      2  * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025
      3  * Repo: https://github.com/notamitgamer/bsc
      4  * License: MIT
      5  */
      6 
      7 #include<stdio.h>
      8 int main() {
      9 	int a = 9, b = 4, c;
     10 	c = a + b;
     11 	printf("A + B = %d\n", c);
     12 	c = a / b;
     13 	printf("A / B = %d\n", c);
     14 	c = a % b;
     15 	printf("A %% B = %d\n", c);
     16 	return 0;
     17 }
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror