fork download
  1. #include <stdio.h>
  2.  
  3. void test(char ** & a){
  4. printf("b");
  5. }
  6. int main(void) {
  7. printf("aa");
  8. char ** a;
  9.  
  10. test( a );
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
aab