APC-SPS-004.c (252B)
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 #include<stdio.h> 8 int main() { 9 int x = 25, y = 19, z; 10 z = x - y; 11 z = z & x ; 12 printf("Z = %d", z); 13 return 0; 14 }