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