fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. unsigned int x = (unsigned int) -1;
  6. std::cout << x << std::endl;
  7. x = (unsigned int) -5;
  8. std::cout << x << std::endl;
  9. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
4294967295
4294967291