fork(3) download
  1. #include <iostream>
  2.  
  3. std::size_t operator "" _z ( unsigned long long n )
  4. { return n; }
  5.  
  6. auto sz = 5_z;
  7. static_assert( std::is_same< decltype( sz ), std::size_t >::value, "" );
  8.  
  9. int main() {
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty