aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/ee2361/TEST.cpp
blob: b59631cc0eceab522bf9888f25e49c2600246471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
int xorMask(int Byte) {
	Byte = Byte ^ 8;
    return Byte;
}

int main() {
    int a = xorMask(15);
    std::cout << a << std::endl;
    return 0;
}