Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
99
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.  
  4. int main(int argc, char ** argv)
  5. {
  6. unsigned char nombre = 67;
  7. unsigned char masque = 0x80;
  8.  
  9. printf("%X\n", (nombre | masque));
  10. printf("%X\n", (nombre | ~masque));
  11.  
  12. return EXIT_SUCCESS;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement