fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. unsigned j;
  6. int M[2][3]={
  7. {1,2,3},
  8. {4,5,6}
  9. };
  10.  
  11.  
  12.  
  13. for (j = 0; j < 3; j++) {
  14.  
  15. printf("\t%d", M[1][j]);
  16. }
  17. printf("\n");
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5280KB
stdin
23
stdout
	4	5	6