/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* Bitwise AND '&' */ #include int main() { unsigned int a = 4, b = 5, c = 6; unsigned int x, y; x = a & b; y = b & c; printf("x = %u y = %u", x, y); return 0; }