aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/ee2361/TEST.cpp
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2020-05-09 14:09:47 -0500
committerRossTheRoss <mstrapp@protonmail.com>2020-05-09 14:09:47 -0500
commit9deabe475c28a7547522be62bc263143db9bf721 (patch)
tree105e0dc321dd3b942ed7957b74368a740e9dbea5 /OLD/ee2361/TEST.cpp
parentoops (diff)
downloadhomework-9deabe475c28a7547522be62bc263143db9bf721.tar
homework-9deabe475c28a7547522be62bc263143db9bf721.tar.gz
homework-9deabe475c28a7547522be62bc263143db9bf721.tar.bz2
homework-9deabe475c28a7547522be62bc263143db9bf721.tar.lz
homework-9deabe475c28a7547522be62bc263143db9bf721.tar.xz
homework-9deabe475c28a7547522be62bc263143db9bf721.tar.zst
homework-9deabe475c28a7547522be62bc263143db9bf721.zip
rearrange homework folders
Diffstat (limited to 'OLD/ee2361/TEST.cpp')
-rw-r--r--OLD/ee2361/TEST.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/OLD/ee2361/TEST.cpp b/OLD/ee2361/TEST.cpp
new file mode 100644
index 0000000..b59631c
--- /dev/null
+++ b/OLD/ee2361/TEST.cpp
@@ -0,0 +1,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;
+} \ No newline at end of file