fork download
  1. #include<stdio.h>
  2. int main() {
  3. int a[2][3] = { {-3, 14, 5 }, {1, -10, 8 } };
  4. int *b[] = {a[0], a[1] };
  5. int *p = a;
  6. printf("%d\n", *p);
  7. return 0;
  8. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
-3