fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char str[2][3]= { "12", "12"};
  6. int i;
  7.  
  8. for(i=0; i<2; i++)
  9. printf("%d %s\n", i, str[i]);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 2724KB
stdin
Standard input is empty
stdout
0 12
1 12