/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ #include int main() { int x = 25, y = 19, z; z = x - y; z = z & x ; printf("Z = %d", z); return 0; }