Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. unsigned int a = -10;
  8. printf("%d\n", a);
  9.  
  10. a = ~a;
  11.  
  12. printf("%d\n", a);
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement