APC-SPS-003.c (315B)
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 /* Bitwise AND '&' */ 8 9 #include<stdio.h> 10 int main() { 11 unsigned int a = 4, b = 5, c = 6; 12 unsigned int x, y; 13 x = a & b; 14 y = b & c; 15 printf("x = %u y = %u", x, y); 16 return 0; 17 }