fork(4) download
  1. #include <iostream>
  2.  
  3. void foo( int a = std::rand())
  4. {
  5. std::cout << a << std::endl;
  6. }
  7.  
  8. int main( void )
  9. {
  10. foo();
  11.  
  12. return( 0 );
  13. }
  14.  
Success #stdin #stdout 0s 2828KB
stdin
Standard input is empty
stdout
1804289383