fork(2) download
  1.  
  2. void do_something(char (*)[])
  3. {
  4. }
  5.  
  6. int main()
  7. {
  8. do_something(0);
  9. return 0;
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:2:29: error: parameter ‘<anonymous>’ includes pointer to array of unknown bound ‘char []’
 void do_something(char (*)[])
                             ^
stdout
Standard output is empty