Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. uint32_t hour = (7 - 12) % 24;
  2. // hour = 4294967291
  3.  
  4. int32_t hour = (7 - 12) % 24;
  5. // hour = -5
  6.  
  7. uint32_t x = 0;
  8. x = x - 5;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement