fork(1) download
  1.  
  2. int main( void )
  3. {
  4.  
  5. char* s[] = { ( char[] ){"a"} ,
  6. ( char[] ){"b"} ,
  7. ( char[] ){"c"} ,
  8. ( char[] ){"d"} ,
  9. ( char[] ){"e"} ,
  10. ( char[] ){"f"} ,
  11. ( char[] ){"g"} ,
  12. ( char[] ){"h"} ,
  13. ( char[] ){"i"} ,
  14. ( char[] ){"j"} ,
  15. ( char[] ){"k"} , } ;
  16.  
  17. int* i[] = { ( int[] ){0} ,
  18. ( int[] ){0} ,
  19. ( int[] ){0} ,
  20. ( int[] ){0} ,
  21. ( int[] ){0} ,
  22. ( int[] ){0} ,
  23. ( int[] ){0} ,
  24. ( int[] ){0} ,
  25. ( int[] ){0} ,
  26. ( int[] ){0} ,
  27. ( int[] ){0} } ;
  28.  
  29. ( void)i ;
  30. ( void)s ;
  31.  
  32. return 0 ;
  33. }
  34.  
  35.  
Success #stdin #stdout 0s 2244KB
stdin
Standard input is empty
stdout
Standard output is empty