diff --git a/thirdBits b/thirdBits new file mode 100644 index 0000000..8bd3617 --- /dev/null +++ b/thirdBits @@ -0,0 +1,9 @@ +int thirdBits (){ + int a; + a = 1 << 2; + a = a | (a << 3); + a = a | (a << 6); + a = a | (a << 12); + a = a | (a << 6); + return a; +}