bsc

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

root / semester_1 / tuition-c / APC-SPS-005.c

APC-SPS-005.c (212B)


      1 /* Bitwise OR '|' */
      2 
      3 #include<stdio.h>
      4 int main() {
      5 	int x = 12, y = 14, z = 10, res;
      6 	x++;
      7 	z++;
      8 	x = x + y + z;
      9 	res = x | y;
     10 	z = res | z;
     11 	printf("x = %d y = %d z = %d res = %d", x, y, z, res);
     12 	return 0;
     13 }
© 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