Quick Actions Home Report a Bug Submit a PR / Fix Code View Repository Developer Portfolio GitHub Profile apc-sps-004.c¶ Metadata¶ Property Detail Author Amit Dutta (amitdutta4255@gmail.com) License MIT Actions¶ Raw View on GitHub 💡 You can print or save this file by opening Raw and using your browser. Source Code¶ #include<stdio.h> int main() { int x = 25, y = 19, z; z = x - y; z = z & x ; printf("Z = %d", z); return 0; }