fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int mat[10][5] = {{0}};
  5.  
  6. printf("%d\n", mat[9]);
  7.  
  8. int *ptr = mat;
  9.  
  10. printf("%d\n", ptr[9]);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
1374910788
0