Skip to content

apc-sps-003.c

Problem Statement

Bitwise AND '&'

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() {
    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;
}