Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. unsigned int x = 0 ;
  2. cout << "x " << x << endl;
  3. x = x - 1;
  4. cout << "x " << x << endl;
  5.  
  6. x : 0
  7. x : 4294967295
  8.  
  9. unsigned int x = 0 ;
  10. cout << "x " << x << endl;
  11. x = x + 1;
  12. cout << "x " << x << endl;
  13.  
  14. x : 0
  15. x : 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement