Tag Archives: Bitwise operators

Bitwise Operators

Bitwise operators let you manipulate individual bits. Normally I would not bother writing about this, but I believe knowing about bit wise operation is an important asset to have when trying to optimize code. Especially in memory consumption. Keep in mind that all bitwise operations  in C only work of singed and unsigned integer primitive [...]

Continue Reading