Skip to content

Instantly share code, notes, and snippets.

@kjk
Created November 7, 2019 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjk/feb93be1b46c72765057691568893219 to your computer and use it in GitHub Desktop.
Save kjk/feb93be1b46c72765057691568893219 to your computer and use it in GitHub Desktop.
// :glot
#include <iostream>
int main(int argc, char **argv) {
int a = 5; // 0101b (0x05)
a &= 10; // a = 0101b & 1010b == 0
std::cout << "a = " << a << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment