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