fork(1) download
  1. #include<stdio.h>
  2. int main(void)
  3. { int x[][3]={{1},4,5,6};
  4. for(int i=0;i<2;i++)
  5. { for(int j=0;j<3;j++) {
  6. printf("%d,%d,",x[i][j]);
  7. }
  8. putchar('\n');
  9. }
  10. return 0;
  11. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
1,-80829904,0,0,0,0,
4,-61726091,5,0,6,0,