bsc

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

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

APC-SPS-003.c (178B)


      1 /* Bitwise AND '&' */
      2 
      3 #include<stdio.h>
      4 int main() {
      5 	unsigned int a = 4, b = 5, c = 6;
      6 	unsigned int x, y;
      7 	x = a & b;
      8 	y = b & c;
      9 	printf("x = %u y = %u", x, y);
     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