fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a[2][3] = {1, 2, 3, 4, 5, 6};
  6. scanf("%d", a);
  7. printf("%d", a[0][0]);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5292KB
stdin
9
stdout
9