fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a[3][4] = {1,2,3,4,5,6,7,8,9,10,11,12};
  5. printf("%u,%u,%u\n",a[0]+1, *(a[0]+1),*(*(a+0)+1));
  6. }
  7.  
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
1898981348,2,2