Advertisement
xathrya

Apa ya? :v

Nov 26th, 2013
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.     int abc = 1 << 31;
  5.     std::cout << abc << std::endl;
  6.     abc = -abc;
  7.     std::cout << abc << std::endl;
  8.  
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement