Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. int main(int argc, char ** argv)
  4. {
  5. unsigned char nombre = 67;
  6. unsigned char masque = 0x08;
  7. printf("%X\n", (nombre & masque));
  8. printf("%X\n", (nombre & ~masque));
  9. return EXIT_SUCCESS;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement