fork(1) download
  1. #include <iostream>
  2.  
  3. int foo(struct NonExistingNeverDeclaredType* arg) {
  4. return sizeof(arg);
  5. }
  6.  
  7. int main() {
  8. std::cout << foo(nullptr) << std::endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
8