1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char* argv[]) {
    printf("17 | 5       == %d\n", 17 | 5);
    printf("88 & 14      == %d\n", 88 & 14);
    printf("17 | 88 & 14 == %d\n", 17 | 88 & 14);
    printf("19 >> 2      == %d\n", 19 >> 2);
    printf("19 << 2      == %d\n", 19 << 2);
    printf("17 | 88 >> 2 == %d\n", 17 | 88 >> 2);
    printf("17 | 88 << 2 == %d\n", 17 | 88 << 2);
    return EXIT_SUCCESS;
}
/* vim: set tabstop=4 shiftwidth=4 fileencoding=utf-8 noexpandtab: */

© Copyright 2017 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.