fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. char cc[10];
  6. decltype(2 - sizeof(cc)) b = -1;
  7. std::cout << b << '\n';
  8. }
  9.  
Success #stdin #stdout 0s 2828KB
stdin
Standard input is empty
stdout
4294967295