menu | @ | master AZBC-BLOG
zipfileselfrepositorystatus
BitWiseOrC program OR-ing two ints
05.01.2021
#include <stdio.h>

int main() {
unsigned short int a, b, c;
a = 6;
b = 3;
c = a | b;

printf("%u\n", c);
}
status | Self | BitWiseOr