fork download
  1. void f(int* a)
  2. {
  3. }
  4.  
  5. int main()
  6. {
  7.  
  8. int b[10];
  9.  
  10. int a = *b;
  11.  
  12. f(b);
  13. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty