fork download
  1. #include <stdio.h>
  2.  
  3. void f (int i[])
  4. {
  5. printf ("i: %i %i %i\n", i[0], i[1], i[2]);
  6. }
  7.  
  8. int main (int argc, char *argv[])
  9. {
  10. f ((int []) {1, 3, 7});
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
i: 1 3 7